├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── flutter-ci.yml │ └── issue_watcher.yaml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── app │ │ │ │ └── talsec │ │ │ │ └── free_malware_detection │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── lib ├── app.dart ├── home │ ├── providers │ │ ├── providers.dart │ │ ├── threat_notifier.dart │ │ └── threat_state.dart │ ├── views │ │ ├── home_page.dart │ │ ├── malware_bottom_sheet.dart │ │ └── views.dart │ └── widgets │ │ ├── app_icon.dart │ │ ├── dismiss_background.dart │ │ ├── malware_item.dart │ │ ├── spinning_icon.dart │ │ ├── status_tile.dart │ │ └── widgets.dart ├── main.dart └── services │ ├── services.dart │ └── talsec_service.dart ├── pubspec.lock └── pubspec.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/flutter-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.github/workflows/flutter-ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue_watcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.github/workflows/issue_watcher.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/app/talsec/free_malware_detection/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/kotlin/app/talsec/free_malware_detection/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/home/providers/providers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/providers/providers.dart -------------------------------------------------------------------------------- /lib/home/providers/threat_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/providers/threat_notifier.dart -------------------------------------------------------------------------------- /lib/home/providers/threat_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/providers/threat_state.dart -------------------------------------------------------------------------------- /lib/home/views/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/views/home_page.dart -------------------------------------------------------------------------------- /lib/home/views/malware_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/views/malware_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/home/views/views.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/views/views.dart -------------------------------------------------------------------------------- /lib/home/widgets/app_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/app_icon.dart -------------------------------------------------------------------------------- /lib/home/widgets/dismiss_background.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/dismiss_background.dart -------------------------------------------------------------------------------- /lib/home/widgets/malware_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/malware_item.dart -------------------------------------------------------------------------------- /lib/home/widgets/spinning_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/spinning_icon.dart -------------------------------------------------------------------------------- /lib/home/widgets/status_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/status_tile.dart -------------------------------------------------------------------------------- /lib/home/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/home/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/services/services.dart: -------------------------------------------------------------------------------- 1 | export 'talsec_service.dart'; 2 | -------------------------------------------------------------------------------- /lib/services/talsec_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/lib/services/talsec_service.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talsec/freeMalwareDetection-Flutter/HEAD/pubspec.yaml --------------------------------------------------------------------------------