├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml └── LEARN.md ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── moonlight │ │ │ │ └── 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.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── assets ├── images │ └── logo.jpg ├── json │ ├── tabs.json │ └── users.json └── lang │ └── en.json ├── docs ├── _config.yml ├── backup │ ├── _config.yml │ ├── index.md │ └── manual-installation.md ├── getting-started.md ├── index.md └── installation.md ├── l10n.yaml ├── lib ├── bloc │ ├── data │ │ ├── models │ │ │ └── item_sql.dart │ │ └── repository │ │ │ └── todo_sql_repository.dart │ ├── domain │ │ ├── models │ │ │ └── item.dart │ │ └── repository │ │ │ └── item_repository.dart │ └── presentation │ │ ├── item_cubit.dart │ │ ├── item_page.dart │ │ └── item_view.dart ├── config │ ├── api_endpoints.dart │ ├── app_config.dart │ ├── app_database.dart │ ├── app_image.dart │ ├── app_link.dart │ ├── app_routes.dart │ ├── app_theme.dart │ └── config.dart ├── core │ ├── app_settings.dart │ └── classes │ │ ├── cache.dart │ │ ├── cache_manager.dart │ │ ├── classes.dart │ │ ├── firebase_messaging_notification.dart │ │ ├── http_manager.dart │ │ ├── local_notification.dart │ │ ├── ml_remote_config.dart │ │ ├── route_manager.dart │ │ ├── sqflite.dart │ │ ├── sqlite.dart │ │ ├── theme_manager.dart │ │ └── theme_provider.dart ├── getx │ ├── app.dart │ ├── core │ │ ├── cache_manager.dart │ │ ├── core.dart │ │ └── translations.dart │ ├── middlewares │ │ ├── auth_middleware.dart │ │ └── middlewares.dart │ ├── modules │ │ ├── app_controlller.dart │ │ ├── auth │ │ │ ├── auth_binding.dart │ │ │ ├── auth_controller.dart │ │ │ ├── auth_view.dart │ │ │ └── models │ │ │ │ ├── login_request_model.dart │ │ │ │ ├── login_response_model.dart │ │ │ │ ├── models.dart │ │ │ │ ├── register_request_model.dart │ │ │ │ └── register_response_model.dart │ │ ├── chats │ │ │ ├── chat_controller.dart │ │ │ └── chat_view.dart │ │ ├── home │ │ │ └── home_view.dart │ │ ├── items │ │ │ ├── item_binding.dart │ │ │ ├── item_controller.dart │ │ │ ├── item_model.dart │ │ │ └── item_view.dart │ │ ├── modules.dart │ │ └── onboarding │ │ │ ├── onboarding_binding.dart │ │ │ ├── onboarding_controller.dart │ │ │ ├── onboarding_model.dart │ │ │ ├── onboarding_view.dart │ │ │ └── widgets │ │ │ ├── dot_indicator.dart │ │ │ └── onboard_content.dart │ ├── routes.dart │ └── services │ │ ├── login_service.dart │ │ └── services.dart ├── l10n │ ├── app_en.arb │ ├── app_gu.arb │ ├── app_hi.arb │ ├── app_localizations.dart │ ├── app_localizations_en.dart │ ├── app_localizations_gu.dart │ └── app_localizations_hi.dart ├── main.dart ├── models │ ├── chat_model.dart │ ├── models.dart │ └── sql │ │ ├── base_sql_model.dart │ │ └── item_model.dart ├── modules │ ├── example │ │ ├── auth │ │ │ ├── api.dart │ │ │ ├── constants.dart │ │ │ ├── utils │ │ │ │ └── validator.dart │ │ │ └── views │ │ │ │ ├── home_view.dart │ │ │ │ ├── login_view.dart │ │ │ │ └── register_view.dart │ │ ├── auth_view.dart │ │ ├── autocomplete_fields_example.dart │ │ ├── buttons_view.dart │ │ ├── cache_view.dart │ │ ├── chats │ │ │ ├── bubble.dart │ │ │ ├── chat_controller.dart │ │ │ └── chat_view.dart │ │ ├── data_table_view.dart │ │ ├── dynamic_multi_form │ │ │ ├── contact_form_item_widget.dart │ │ │ ├── contact_model.dart │ │ │ ├── dynamic_multi_form_view.dart │ │ │ └── empty_state.dart │ │ ├── dynamic_tab_view.dart │ │ ├── example_view.dart │ │ ├── fetchdata_from_api.dart │ │ ├── filter_chip_view.dart │ │ ├── grid_view.dart │ │ ├── infinite_scroll_pagination.dart │ │ ├── infinite_scroll_using_api.dart │ │ ├── input_fields_example.dart │ │ ├── isolates_view.dart │ │ ├── layout_grid_view.dart │ │ ├── load_local_image.dart │ │ ├── load_local_json.dart │ │ ├── load_more_using_api.dart │ │ ├── onboarding_view.dart │ │ ├── paginated_data_table.dart │ │ ├── sensor_view.dart │ │ ├── snackbar_view.dart │ │ ├── top_search_bar_view.dart │ │ ├── using_alert_dialog.dart │ │ └── using_bottom_nav_bar.dart │ ├── example_ads │ │ ├── banner_ads_view.dart │ │ ├── example_ads_view.dart │ │ └── interstitial_ads_view.dart │ ├── example_mvc │ │ ├── counter │ │ │ ├── counter_controller.dart │ │ │ ├── counter_model.dart │ │ │ └── counter_view.dart │ │ ├── example_mvc_view.dart │ │ ├── items │ │ │ ├── item_controller.dart │ │ │ ├── item_view.dart │ │ │ ├── sqflite_crud_controller.dart │ │ │ └── sqflite_item_controller.dart │ │ ├── loadMore │ │ │ ├── LoadMoreControllerMVC.dart │ │ │ ├── LoadMoreModelMVC.dart │ │ │ └── LoadMoreViewMVC.dart │ │ ├── sqflite_view.dart │ │ └── sql_view.dart │ ├── home │ │ ├── auth │ │ │ ├── auth_middleware.dart │ │ │ ├── auth_service.dart │ │ │ ├── login_request_model.dart │ │ │ ├── login_response_model.dart │ │ │ └── login_view.dart │ │ ├── home_view.dart │ │ ├── load_more_view.dart │ │ ├── load_more_with_cache_view.dart │ │ ├── local_notification_view.dart │ │ └── setting_view.dart │ ├── modules.dart │ ├── package_example │ │ ├── check_internet_connection.dart │ │ ├── firebase_remote_config_view.dart │ │ ├── geo_location_view.dart │ │ ├── package_example_view.dart │ │ ├── permission_handler_view.dart │ │ ├── provider_view.dart │ │ └── youtube_video_view.dart │ └── sqflite │ │ ├── sql_crud_view.dart │ │ └── sql_helper.dart ├── repositories │ ├── item_repository.dart │ └── sqflite_repository.dart ├── services │ └── services.dart ├── utils.dart └── widgets │ ├── ads │ ├── banner_ad_widget.dart │ └── banner_ad_widget_remote_config.dart │ ├── drawer-tile.dart │ ├── drawer.dart │ ├── dynamic_forms │ ├── dynamic_form.dart │ └── dynamic_form_model.dart │ ├── input.dart │ ├── navbar.dart │ ├── pagination_controls.dart │ ├── permission_dialog.dart │ ├── widgets.dart │ └── youtube_video_player.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshot.png └── test └── widget_test.dart /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.github/LEARN.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/moonlight/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/kotlin/com/example/moonlight/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/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/RajTechnologiesPvtLtd/flutter-moonlight/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/RajTechnologiesPvtLtd/flutter-moonlight/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/RajTechnologiesPvtLtd/flutter-moonlight/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/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /assets/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/assets/images/logo.jpg -------------------------------------------------------------------------------- /assets/json/tabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/assets/json/tabs.json -------------------------------------------------------------------------------- /assets/json/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/assets/json/users.json -------------------------------------------------------------------------------- /assets/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/assets/lang/en.json -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/backup/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/backup/_config.yml -------------------------------------------------------------------------------- /docs/backup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/backup/index.md -------------------------------------------------------------------------------- /docs/backup/manual-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/backup/manual-installation.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/docs/installation.md -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/bloc/data/models/item_sql.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/data/models/item_sql.dart -------------------------------------------------------------------------------- /lib/bloc/data/repository/todo_sql_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/data/repository/todo_sql_repository.dart -------------------------------------------------------------------------------- /lib/bloc/domain/models/item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/domain/models/item.dart -------------------------------------------------------------------------------- /lib/bloc/domain/repository/item_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/domain/repository/item_repository.dart -------------------------------------------------------------------------------- /lib/bloc/presentation/item_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/presentation/item_cubit.dart -------------------------------------------------------------------------------- /lib/bloc/presentation/item_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/presentation/item_page.dart -------------------------------------------------------------------------------- /lib/bloc/presentation/item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/bloc/presentation/item_view.dart -------------------------------------------------------------------------------- /lib/config/api_endpoints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/api_endpoints.dart -------------------------------------------------------------------------------- /lib/config/app_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_config.dart -------------------------------------------------------------------------------- /lib/config/app_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_database.dart -------------------------------------------------------------------------------- /lib/config/app_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_image.dart -------------------------------------------------------------------------------- /lib/config/app_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_link.dart -------------------------------------------------------------------------------- /lib/config/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_routes.dart -------------------------------------------------------------------------------- /lib/config/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/app_theme.dart -------------------------------------------------------------------------------- /lib/config/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/config/config.dart -------------------------------------------------------------------------------- /lib/core/app_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/app_settings.dart -------------------------------------------------------------------------------- /lib/core/classes/cache.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/cache.dart -------------------------------------------------------------------------------- /lib/core/classes/cache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/cache_manager.dart -------------------------------------------------------------------------------- /lib/core/classes/classes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/classes.dart -------------------------------------------------------------------------------- /lib/core/classes/firebase_messaging_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/firebase_messaging_notification.dart -------------------------------------------------------------------------------- /lib/core/classes/http_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/http_manager.dart -------------------------------------------------------------------------------- /lib/core/classes/local_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/local_notification.dart -------------------------------------------------------------------------------- /lib/core/classes/ml_remote_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/ml_remote_config.dart -------------------------------------------------------------------------------- /lib/core/classes/route_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/route_manager.dart -------------------------------------------------------------------------------- /lib/core/classes/sqflite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/sqflite.dart -------------------------------------------------------------------------------- /lib/core/classes/sqlite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/sqlite.dart -------------------------------------------------------------------------------- /lib/core/classes/theme_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/theme_manager.dart -------------------------------------------------------------------------------- /lib/core/classes/theme_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/core/classes/theme_provider.dart -------------------------------------------------------------------------------- /lib/getx/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/app.dart -------------------------------------------------------------------------------- /lib/getx/core/cache_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/core/cache_manager.dart -------------------------------------------------------------------------------- /lib/getx/core/core.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/core/core.dart -------------------------------------------------------------------------------- /lib/getx/core/translations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/core/translations.dart -------------------------------------------------------------------------------- /lib/getx/middlewares/auth_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/middlewares/auth_middleware.dart -------------------------------------------------------------------------------- /lib/getx/middlewares/middlewares.dart: -------------------------------------------------------------------------------- 1 | export 'auth_middleware.dart'; 2 | -------------------------------------------------------------------------------- /lib/getx/modules/app_controlller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/app_controlller.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/auth_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/auth_binding.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/auth_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/auth_controller.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/auth_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/auth_view.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/models/login_request_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/models/login_request_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/models/login_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/models/login_response_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/models/models.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/models/register_request_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/models/register_request_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/auth/models/register_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/auth/models/register_response_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/chats/chat_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/chats/chat_controller.dart -------------------------------------------------------------------------------- /lib/getx/modules/chats/chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/chats/chat_view.dart -------------------------------------------------------------------------------- /lib/getx/modules/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/home/home_view.dart -------------------------------------------------------------------------------- /lib/getx/modules/items/item_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/items/item_binding.dart -------------------------------------------------------------------------------- /lib/getx/modules/items/item_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/items/item_controller.dart -------------------------------------------------------------------------------- /lib/getx/modules/items/item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/items/item_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/items/item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/items/item_view.dart -------------------------------------------------------------------------------- /lib/getx/modules/modules.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/modules.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/onboarding_binding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/onboarding_binding.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/onboarding_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/onboarding_controller.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/onboarding_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/onboarding_model.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/onboarding_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/onboarding_view.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/widgets/dot_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/widgets/dot_indicator.dart -------------------------------------------------------------------------------- /lib/getx/modules/onboarding/widgets/onboard_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/modules/onboarding/widgets/onboard_content.dart -------------------------------------------------------------------------------- /lib/getx/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/routes.dart -------------------------------------------------------------------------------- /lib/getx/services/login_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/getx/services/login_service.dart -------------------------------------------------------------------------------- /lib/getx/services/services.dart: -------------------------------------------------------------------------------- 1 | export 'login_service.dart'; 2 | -------------------------------------------------------------------------------- /lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /lib/l10n/app_gu.arb: -------------------------------------------------------------------------------- 1 | { 2 | "home": "હોમે" 3 | } -------------------------------------------------------------------------------- /lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- 1 | { 2 | "home": "होमे" 3 | } -------------------------------------------------------------------------------- /lib/l10n/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/l10n/app_localizations.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/l10n/app_localizations_en.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_gu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/l10n/app_localizations_gu.dart -------------------------------------------------------------------------------- /lib/l10n/app_localizations_hi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/l10n/app_localizations_hi.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/chat_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/models/chat_model.dart -------------------------------------------------------------------------------- /lib/models/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/models/models.dart -------------------------------------------------------------------------------- /lib/models/sql/base_sql_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/models/sql/base_sql_model.dart -------------------------------------------------------------------------------- /lib/models/sql/item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/models/sql/item_model.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/api.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/constants.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/utils/validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/utils/validator.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/views/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/views/home_view.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/views/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/views/login_view.dart -------------------------------------------------------------------------------- /lib/modules/example/auth/views/register_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth/views/register_view.dart -------------------------------------------------------------------------------- /lib/modules/example/auth_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/auth_view.dart -------------------------------------------------------------------------------- /lib/modules/example/autocomplete_fields_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/autocomplete_fields_example.dart -------------------------------------------------------------------------------- /lib/modules/example/buttons_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/buttons_view.dart -------------------------------------------------------------------------------- /lib/modules/example/cache_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/cache_view.dart -------------------------------------------------------------------------------- /lib/modules/example/chats/bubble.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/chats/bubble.dart -------------------------------------------------------------------------------- /lib/modules/example/chats/chat_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/chats/chat_controller.dart -------------------------------------------------------------------------------- /lib/modules/example/chats/chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/chats/chat_view.dart -------------------------------------------------------------------------------- /lib/modules/example/data_table_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/data_table_view.dart -------------------------------------------------------------------------------- /lib/modules/example/dynamic_multi_form/contact_form_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/dynamic_multi_form/contact_form_item_widget.dart -------------------------------------------------------------------------------- /lib/modules/example/dynamic_multi_form/contact_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/dynamic_multi_form/contact_model.dart -------------------------------------------------------------------------------- /lib/modules/example/dynamic_multi_form/dynamic_multi_form_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/dynamic_multi_form/dynamic_multi_form_view.dart -------------------------------------------------------------------------------- /lib/modules/example/dynamic_multi_form/empty_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/dynamic_multi_form/empty_state.dart -------------------------------------------------------------------------------- /lib/modules/example/dynamic_tab_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/dynamic_tab_view.dart -------------------------------------------------------------------------------- /lib/modules/example/example_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/example_view.dart -------------------------------------------------------------------------------- /lib/modules/example/fetchdata_from_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/fetchdata_from_api.dart -------------------------------------------------------------------------------- /lib/modules/example/filter_chip_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/filter_chip_view.dart -------------------------------------------------------------------------------- /lib/modules/example/grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/grid_view.dart -------------------------------------------------------------------------------- /lib/modules/example/infinite_scroll_pagination.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/infinite_scroll_pagination.dart -------------------------------------------------------------------------------- /lib/modules/example/infinite_scroll_using_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/infinite_scroll_using_api.dart -------------------------------------------------------------------------------- /lib/modules/example/input_fields_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/input_fields_example.dart -------------------------------------------------------------------------------- /lib/modules/example/isolates_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/isolates_view.dart -------------------------------------------------------------------------------- /lib/modules/example/layout_grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/layout_grid_view.dart -------------------------------------------------------------------------------- /lib/modules/example/load_local_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/load_local_image.dart -------------------------------------------------------------------------------- /lib/modules/example/load_local_json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/load_local_json.dart -------------------------------------------------------------------------------- /lib/modules/example/load_more_using_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/load_more_using_api.dart -------------------------------------------------------------------------------- /lib/modules/example/onboarding_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/onboarding_view.dart -------------------------------------------------------------------------------- /lib/modules/example/paginated_data_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/paginated_data_table.dart -------------------------------------------------------------------------------- /lib/modules/example/sensor_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/sensor_view.dart -------------------------------------------------------------------------------- /lib/modules/example/snackbar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/snackbar_view.dart -------------------------------------------------------------------------------- /lib/modules/example/top_search_bar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/top_search_bar_view.dart -------------------------------------------------------------------------------- /lib/modules/example/using_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/using_alert_dialog.dart -------------------------------------------------------------------------------- /lib/modules/example/using_bottom_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example/using_bottom_nav_bar.dart -------------------------------------------------------------------------------- /lib/modules/example_ads/banner_ads_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_ads/banner_ads_view.dart -------------------------------------------------------------------------------- /lib/modules/example_ads/example_ads_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_ads/example_ads_view.dart -------------------------------------------------------------------------------- /lib/modules/example_ads/interstitial_ads_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_ads/interstitial_ads_view.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/counter/counter_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/counter/counter_controller.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/counter/counter_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/counter/counter_model.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/counter/counter_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/counter/counter_view.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/example_mvc_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/example_mvc_view.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/items/item_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/items/item_controller.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/items/item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/items/item_view.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/items/sqflite_crud_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/items/sqflite_crud_controller.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/items/sqflite_item_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/items/sqflite_item_controller.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/loadMore/LoadMoreControllerMVC.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/loadMore/LoadMoreControllerMVC.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/loadMore/LoadMoreModelMVC.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/loadMore/LoadMoreModelMVC.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/loadMore/LoadMoreViewMVC.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/loadMore/LoadMoreViewMVC.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/sqflite_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/sqflite_view.dart -------------------------------------------------------------------------------- /lib/modules/example_mvc/sql_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/example_mvc/sql_view.dart -------------------------------------------------------------------------------- /lib/modules/home/auth/auth_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/auth/auth_middleware.dart -------------------------------------------------------------------------------- /lib/modules/home/auth/auth_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/auth/auth_service.dart -------------------------------------------------------------------------------- /lib/modules/home/auth/login_request_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/auth/login_request_model.dart -------------------------------------------------------------------------------- /lib/modules/home/auth/login_response_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/auth/login_response_model.dart -------------------------------------------------------------------------------- /lib/modules/home/auth/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/auth/login_view.dart -------------------------------------------------------------------------------- /lib/modules/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/home_view.dart -------------------------------------------------------------------------------- /lib/modules/home/load_more_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/load_more_view.dart -------------------------------------------------------------------------------- /lib/modules/home/load_more_with_cache_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/load_more_with_cache_view.dart -------------------------------------------------------------------------------- /lib/modules/home/local_notification_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/local_notification_view.dart -------------------------------------------------------------------------------- /lib/modules/home/setting_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/home/setting_view.dart -------------------------------------------------------------------------------- /lib/modules/modules.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/modules.dart -------------------------------------------------------------------------------- /lib/modules/package_example/check_internet_connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/check_internet_connection.dart -------------------------------------------------------------------------------- /lib/modules/package_example/firebase_remote_config_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/firebase_remote_config_view.dart -------------------------------------------------------------------------------- /lib/modules/package_example/geo_location_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/geo_location_view.dart -------------------------------------------------------------------------------- /lib/modules/package_example/package_example_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/package_example_view.dart -------------------------------------------------------------------------------- /lib/modules/package_example/permission_handler_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/permission_handler_view.dart -------------------------------------------------------------------------------- /lib/modules/package_example/provider_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/provider_view.dart -------------------------------------------------------------------------------- /lib/modules/package_example/youtube_video_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/package_example/youtube_video_view.dart -------------------------------------------------------------------------------- /lib/modules/sqflite/sql_crud_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/sqflite/sql_crud_view.dart -------------------------------------------------------------------------------- /lib/modules/sqflite/sql_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/modules/sqflite/sql_helper.dart -------------------------------------------------------------------------------- /lib/repositories/item_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/repositories/item_repository.dart -------------------------------------------------------------------------------- /lib/repositories/sqflite_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/repositories/sqflite_repository.dart -------------------------------------------------------------------------------- /lib/services/services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/services/services.dart -------------------------------------------------------------------------------- /lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/utils.dart -------------------------------------------------------------------------------- /lib/widgets/ads/banner_ad_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/ads/banner_ad_widget.dart -------------------------------------------------------------------------------- /lib/widgets/ads/banner_ad_widget_remote_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/ads/banner_ad_widget_remote_config.dart -------------------------------------------------------------------------------- /lib/widgets/drawer-tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/drawer-tile.dart -------------------------------------------------------------------------------- /lib/widgets/drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/drawer.dart -------------------------------------------------------------------------------- /lib/widgets/dynamic_forms/dynamic_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/dynamic_forms/dynamic_form.dart -------------------------------------------------------------------------------- /lib/widgets/dynamic_forms/dynamic_form_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/dynamic_forms/dynamic_form_model.dart -------------------------------------------------------------------------------- /lib/widgets/input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/input.dart -------------------------------------------------------------------------------- /lib/widgets/navbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/navbar.dart -------------------------------------------------------------------------------- /lib/widgets/pagination_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/pagination_controls.dart -------------------------------------------------------------------------------- /lib/widgets/permission_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/permission_dialog.dart -------------------------------------------------------------------------------- /lib/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/widgets.dart -------------------------------------------------------------------------------- /lib/widgets/youtube_video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/lib/widgets/youtube_video_player.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RajTechnologiesPvtLtd/flutter-moonlight/HEAD/test/widget_test.dart --------------------------------------------------------------------------------