├── .gitignore ├── .gradle ├── 6.1.1 │ ├── executionHistory │ │ └── executionHistory.lock │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── gc.properties ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties ├── checksums │ └── checksums.lock └── vcs-1 │ └── gc.properties ├── .metadata ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── geekysingh │ │ │ │ └── flutter_clean_architecture │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── 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 │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── core ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib │ ├── common │ │ └── status.dart │ ├── core.dart │ ├── core │ │ ├── core_screen.dart │ │ └── core_view_model.dart │ ├── service │ │ ├── dialog_service.dart │ │ ├── navigation_service.dart │ │ ├── snackbar_service.dart │ │ └── toast_service.dart │ └── src │ │ └── di │ │ ├── locator.config.dart │ │ └── locator.dart ├── pubspec.lock └── pubspec.yaml ├── data ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib │ ├── data.dart │ └── src │ │ ├── common │ │ └── constants.dart │ │ ├── datasource │ │ ├── local │ │ │ ├── dao │ │ │ │ └── article_dao.dart │ │ │ ├── db │ │ │ │ ├── app_database.dart │ │ │ │ └── app_database.g.dart │ │ │ └── entity │ │ │ │ └── article_entity.dart │ │ └── remote │ │ │ ├── dto │ │ │ ├── article_response.dart │ │ │ └── article_response.g.dart │ │ │ └── service │ │ │ ├── article_service.dart │ │ │ └── article_service.g.dart │ │ ├── di │ │ ├── locator.config.dart │ │ └── locator.dart │ │ ├── mapper │ │ └── article_mapper.dart │ │ └── repository │ │ ├── article_repository.dart │ │ └── base │ │ └── base_repository.dart ├── pubspec.lock └── pubspec.yaml ├── domain ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib │ ├── domain.dart │ └── src │ │ ├── common │ │ ├── error_type.dart │ │ └── result.dart │ │ ├── di │ │ ├── locator.config.dart │ │ └── locator.dart │ │ ├── model │ │ └── article_model.dart │ │ ├── repository │ │ └── article_repository.dart │ │ └── usecase │ │ ├── article_use_case.dart │ │ ├── article_use_case_impl.dart │ │ └── base │ │ └── base_use_case.dart ├── pubspec.lock └── pubspec.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib └── main.dart ├── local.properties ├── presentation ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets │ └── placeholder_image.jpeg ├── lib │ ├── presentation.dart │ └── src │ │ ├── common │ │ ├── constants │ │ │ ├── app_strings.dart │ │ │ └── assets.dart │ │ └── routes │ │ │ ├── router.dart │ │ │ └── router.gr.dart │ │ ├── di │ │ ├── locator.config.dart │ │ └── locator.dart │ │ └── features │ │ ├── articles │ │ ├── details │ │ │ ├── article_detail_screen.dart │ │ │ └── article_detail_view_model.dart │ │ └── list │ │ │ ├── article_list_screen.dart │ │ │ └── article_list_view_model.dart │ │ └── login │ │ ├── login_screen.dart │ │ └── login_view_model.dart ├── pubspec.lock └── pubspec.yaml ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/6.1.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.gradle/6.1.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /.gradle/6.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/6.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.gradle/6.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/6.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 06 18:26:45 IST 2021 2 | gradle.version=6.1.1 3 | -------------------------------------------------------------------------------- /.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/geekysingh/flutter_clean_architecture/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/main/kotlin/com/geekysingh/flutter_clean_architecture/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/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/GeekySingh/flutter_clean_architecture/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/GeekySingh/flutter_clean_architecture/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/GeekySingh/flutter_clean_architecture/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/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/.gitignore -------------------------------------------------------------------------------- /core/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/.metadata -------------------------------------------------------------------------------- /core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/CHANGELOG.md -------------------------------------------------------------------------------- /core/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/README.md -------------------------------------------------------------------------------- /core/lib/common/status.dart: -------------------------------------------------------------------------------- 1 | enum Status {LOADING, SUCCESS, ERROR} -------------------------------------------------------------------------------- /core/lib/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/core.dart -------------------------------------------------------------------------------- /core/lib/core/core_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/core/core_screen.dart -------------------------------------------------------------------------------- /core/lib/core/core_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/core/core_view_model.dart -------------------------------------------------------------------------------- /core/lib/service/dialog_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/service/dialog_service.dart -------------------------------------------------------------------------------- /core/lib/service/navigation_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/service/navigation_service.dart -------------------------------------------------------------------------------- /core/lib/service/snackbar_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/service/snackbar_service.dart -------------------------------------------------------------------------------- /core/lib/service/toast_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/service/toast_service.dart -------------------------------------------------------------------------------- /core/lib/src/di/locator.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/src/di/locator.config.dart -------------------------------------------------------------------------------- /core/lib/src/di/locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/lib/src/di/locator.dart -------------------------------------------------------------------------------- /core/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/pubspec.lock -------------------------------------------------------------------------------- /core/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/core/pubspec.yaml -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/.metadata -------------------------------------------------------------------------------- /data/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/CHANGELOG.md -------------------------------------------------------------------------------- /data/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/README.md -------------------------------------------------------------------------------- /data/lib/data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/data.dart -------------------------------------------------------------------------------- /data/lib/src/common/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/common/constants.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/local/dao/article_dao.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/local/dao/article_dao.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/local/db/app_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/local/db/app_database.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/local/db/app_database.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/local/db/app_database.g.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/local/entity/article_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/local/entity/article_entity.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/remote/dto/article_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/remote/dto/article_response.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/remote/dto/article_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/remote/dto/article_response.g.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/remote/service/article_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/remote/service/article_service.dart -------------------------------------------------------------------------------- /data/lib/src/datasource/remote/service/article_service.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/datasource/remote/service/article_service.g.dart -------------------------------------------------------------------------------- /data/lib/src/di/locator.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/di/locator.config.dart -------------------------------------------------------------------------------- /data/lib/src/di/locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/di/locator.dart -------------------------------------------------------------------------------- /data/lib/src/mapper/article_mapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/mapper/article_mapper.dart -------------------------------------------------------------------------------- /data/lib/src/repository/article_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/repository/article_repository.dart -------------------------------------------------------------------------------- /data/lib/src/repository/base/base_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/lib/src/repository/base/base_repository.dart -------------------------------------------------------------------------------- /data/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/pubspec.lock -------------------------------------------------------------------------------- /data/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/data/pubspec.yaml -------------------------------------------------------------------------------- /domain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/.gitignore -------------------------------------------------------------------------------- /domain/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/.metadata -------------------------------------------------------------------------------- /domain/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/CHANGELOG.md -------------------------------------------------------------------------------- /domain/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/README.md -------------------------------------------------------------------------------- /domain/lib/domain.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/domain.dart -------------------------------------------------------------------------------- /domain/lib/src/common/error_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/common/error_type.dart -------------------------------------------------------------------------------- /domain/lib/src/common/result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/common/result.dart -------------------------------------------------------------------------------- /domain/lib/src/di/locator.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/di/locator.config.dart -------------------------------------------------------------------------------- /domain/lib/src/di/locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/di/locator.dart -------------------------------------------------------------------------------- /domain/lib/src/model/article_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/model/article_model.dart -------------------------------------------------------------------------------- /domain/lib/src/repository/article_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/repository/article_repository.dart -------------------------------------------------------------------------------- /domain/lib/src/usecase/article_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/usecase/article_use_case.dart -------------------------------------------------------------------------------- /domain/lib/src/usecase/article_use_case_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/lib/src/usecase/article_use_case_impl.dart -------------------------------------------------------------------------------- /domain/lib/src/usecase/base/base_use_case.dart: -------------------------------------------------------------------------------- 1 | 2 | abstract class BaseUseCase {} -------------------------------------------------------------------------------- /domain/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/pubspec.lock -------------------------------------------------------------------------------- /domain/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/domain/pubspec.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/lib/main.dart -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/local.properties -------------------------------------------------------------------------------- /presentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/.gitignore -------------------------------------------------------------------------------- /presentation/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/.metadata -------------------------------------------------------------------------------- /presentation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/CHANGELOG.md -------------------------------------------------------------------------------- /presentation/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/README.md -------------------------------------------------------------------------------- /presentation/assets/placeholder_image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/assets/placeholder_image.jpeg -------------------------------------------------------------------------------- /presentation/lib/presentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/presentation.dart -------------------------------------------------------------------------------- /presentation/lib/src/common/constants/app_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/common/constants/app_strings.dart -------------------------------------------------------------------------------- /presentation/lib/src/common/constants/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/common/constants/assets.dart -------------------------------------------------------------------------------- /presentation/lib/src/common/routes/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/common/routes/router.dart -------------------------------------------------------------------------------- /presentation/lib/src/common/routes/router.gr.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/common/routes/router.gr.dart -------------------------------------------------------------------------------- /presentation/lib/src/di/locator.config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/di/locator.config.dart -------------------------------------------------------------------------------- /presentation/lib/src/di/locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/di/locator.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/articles/details/article_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/articles/details/article_detail_screen.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/articles/details/article_detail_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/articles/details/article_detail_view_model.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/articles/list/article_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/articles/list/article_list_screen.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/articles/list/article_list_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/articles/list/article_list_view_model.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/login/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/login/login_screen.dart -------------------------------------------------------------------------------- /presentation/lib/src/features/login/login_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/lib/src/features/login/login_view_model.dart -------------------------------------------------------------------------------- /presentation/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/pubspec.lock -------------------------------------------------------------------------------- /presentation/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/presentation/pubspec.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeekySingh/flutter_clean_architecture/HEAD/pubspec.yaml --------------------------------------------------------------------------------