├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yaml │ ├── FEATURE_REQUEST.yaml │ └── IMPROVEMENT_SUGGESTION.yaml └── workflows │ ├── production-supabase-migration.yml │ └── staging-supabase-migration.yml ├── .gitignore ├── .metadata ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── icon-playstore.png │ │ ├── kotlin │ │ │ └── br │ │ │ │ └── dev │ │ │ │ └── kidgbzin │ │ │ │ └── midlet_store │ │ │ │ ├── MainActivity.kt │ │ │ │ └── NativeAdvertisement.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ ├── background_advertisement_image.xml │ │ │ ├── background_button.xml │ │ │ ├── background_card.xml │ │ │ └── launch_background.xml │ │ │ ├── font │ │ │ ├── rajdhani_bold.ttf │ │ │ ├── rajdhani_light.ttf │ │ │ ├── rajdhani_medium.ttf │ │ │ ├── rajdhani_regular.ttf │ │ │ └── rajdhani_semibold.ttf │ │ │ ├── layout │ │ │ └── native_advertisement.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.webp │ │ │ ├── icon_background.webp │ │ │ ├── icon_foreground.webp │ │ │ └── icon_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.webp │ │ │ ├── icon_background.webp │ │ │ ├── icon_foreground.webp │ │ │ └── icon_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.webp │ │ │ ├── icon_background.webp │ │ │ ├── icon_foreground.webp │ │ │ └── icon_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.webp │ │ │ ├── icon_background.webp │ │ │ ├── icon_foreground.webp │ │ │ └── icon_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.webp │ │ │ ├── icon_background.webp │ │ │ ├── icon_foreground.webp │ │ │ └── icon_round.webp │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── file_paths.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── assets ├── badges │ ├── GitHub.png │ └── PlayStore.png ├── brands │ ├── BlackBerry.png │ ├── Google.png │ ├── J2ME-Loader.png │ ├── JL-Mod.png │ ├── LG.png │ ├── Motorola.png │ ├── Nokia.png │ ├── Samsung.png │ └── Sony Ericsson.png └── flags │ ├── BR.gif │ ├── CZ.gif │ ├── DE.gif │ ├── ES.gif │ ├── FR.gif │ ├── ID.gif │ ├── IT.gif │ ├── PL.gif │ ├── PT.gif │ └── US.gif ├── firebase.json ├── l10n.yaml ├── lib ├── application.dart ├── application │ ├── core │ │ ├── configuration │ │ │ ├── global_configuration.dart │ │ │ ├── router_configuration.dart │ │ │ └── theme_configuration.dart │ │ ├── entities │ │ │ ├── game_entity.dart │ │ │ ├── game_metadata_entity.dart │ │ │ ├── midlet_entity.dart │ │ │ └── review_entity.dart │ │ ├── enumerations │ │ │ ├── emulators_enumeration.dart │ │ │ ├── l10n_enumeration.dart │ │ │ ├── language_enumeration.dart │ │ │ ├── palette_enumeration.dart │ │ │ ├── progress_enumeration.dart │ │ │ ├── tag_enumeration.dart │ │ │ ├── typographies_enumeration.dart │ │ │ └── views_enumerations.dart │ │ └── extensions │ │ │ ├── messenger_extension.dart │ │ │ └── router_extension.dart │ ├── interfaces │ │ └── box_interface.dart │ ├── presenter │ │ ├── library │ │ │ ├── details │ │ │ │ ├── components │ │ │ │ │ ├── about_section_component.dart │ │ │ │ │ ├── action_section_component.dart │ │ │ │ │ ├── cover_section_component.dart │ │ │ │ │ ├── header_section_component.dart │ │ │ │ │ ├── play_button_component.dart │ │ │ │ │ ├── previews_dialog_component.dart │ │ │ │ │ ├── previews_section_component.dart │ │ │ │ │ ├── rating_section_component.dart │ │ │ │ │ ├── related_section_component.dart │ │ │ │ │ ├── submit_rating_modal_component.dart │ │ │ │ │ └── top_reviews_section_component.dart │ │ │ │ ├── details_controller.dart │ │ │ │ ├── details_handler.dart │ │ │ │ └── details_view.dart │ │ │ ├── installation │ │ │ │ ├── components │ │ │ │ │ ├── details_section_component.dart │ │ │ │ │ ├── emulator_section_component.dart │ │ │ │ │ ├── emulator_tile_component.dart │ │ │ │ │ ├── header_section_component.dart │ │ │ │ │ ├── install_button_component.dart │ │ │ │ │ ├── install_modal_component.dart │ │ │ │ │ └── source_modal_component.dart │ │ │ │ ├── installation_controller.dart │ │ │ │ ├── installation_handler.dart │ │ │ │ └── installation_view.dart │ │ │ ├── launcher │ │ │ │ ├── launcher_controller.dart │ │ │ │ ├── launcher_handler.dart │ │ │ │ └── launcher_view.dart │ │ │ ├── login │ │ │ │ ├── components │ │ │ │ │ └── google_sign_in_button.dart │ │ │ │ ├── login_controller.dart │ │ │ │ ├── login_handler.dart │ │ │ │ └── login_view.dart │ │ │ ├── midlets │ │ │ │ ├── components │ │ │ │ │ ├── list_view_component.dart │ │ │ │ │ ├── midlet_tile_component.dart │ │ │ │ │ └── midlets_counter_component.dart │ │ │ │ ├── midlets_controller.dart │ │ │ │ ├── midlets_handler.dart │ │ │ │ └── midlets_view.dart │ │ │ ├── reviews │ │ │ │ ├── components │ │ │ │ │ ├── list_view_component.dart │ │ │ │ │ ├── review_tile_component.dart │ │ │ │ │ ├── score_component.dart │ │ │ │ │ ├── submit_review_button_component.dart │ │ │ │ │ └── submit_review_modal_component.dart │ │ │ │ ├── reviews_controller.dart │ │ │ │ ├── reviews_handler.dart │ │ │ │ └── reviews_view.dart │ │ │ ├── search │ │ │ │ ├── components │ │ │ │ │ ├── filter_button_component.dart │ │ │ │ │ ├── list_view_component.dart │ │ │ │ │ ├── modal_categories_component.dart │ │ │ │ │ ├── modal_publisher_component.dart │ │ │ │ │ ├── modal_release_component.dart │ │ │ │ │ ├── search_bar_component.dart │ │ │ │ │ └── suggestion_overlay_component.dart │ │ │ │ ├── search_controller.dart │ │ │ │ ├── search_handler.dart │ │ │ │ └── views │ │ │ │ │ └── search_view.dart │ │ │ └── update │ │ │ │ ├── components │ │ │ │ └── update_button.dart │ │ │ │ ├── update_controller.dart │ │ │ │ ├── update_handler.dart │ │ │ │ └── update_view.dart │ │ └── widgets │ │ │ ├── advertisement_widget.dart │ │ │ ├── button_widget.dart │ │ │ ├── confetti_widget.dart │ │ │ ├── error_message_widget.dart │ │ │ ├── gradient_button_widget.dart │ │ │ ├── loading_widget.dart │ │ │ ├── modal_widget.dart │ │ │ ├── rating_stars_widget.dart │ │ │ ├── section_widget.dart │ │ │ ├── tags_widget.dart │ │ │ └── thumbnail_widget.dart │ ├── repositories │ │ ├── bucket_repository.dart │ │ ├── hive_repository.dart │ │ └── supabase_repository.dart │ └── services │ │ ├── activity_service.dart │ │ ├── admob_service.dart │ │ ├── android_service.dart │ │ ├── firebase_messaging_service.dart │ │ ├── github_service.dart │ │ ├── google_authentication_service.dart │ │ └── supabase_service.dart ├── l10n │ ├── l10n_en.arb │ ├── l10n_id.arb │ └── l10n_pt.arb ├── logger.dart └── main.dart ├── pubspec.yaml └── supabase ├── .gitignore └── migrations ├── 20250706192600_create_starting_views.sql ├── 20250706193000_create_starting_tables.sql └── 20250706193400_create_starting_functions.sql /.github/ISSUE_TEMPLATE/BUG_REPORT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/IMPROVEMENT_SUGGESTION.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.github/ISSUE_TEMPLATE/IMPROVEMENT_SUGGESTION.yaml -------------------------------------------------------------------------------- /.github/workflows/production-supabase-migration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.github/workflows/production-supabase-migration.yml -------------------------------------------------------------------------------- /.github/workflows/staging-supabase-migration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.github/workflows/staging-supabase-migration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/icon-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/icon-playstore.png -------------------------------------------------------------------------------- /android/app/src/main/kotlin/br/dev/kidgbzin/midlet_store/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/kotlin/br/dev/kidgbzin/midlet_store/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/kotlin/br/dev/kidgbzin/midlet_store/NativeAdvertisement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/kotlin/br/dev/kidgbzin/midlet_store/NativeAdvertisement.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_advertisement_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/drawable/background_advertisement_image.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/drawable/background_button.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/drawable/background_card.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/font/rajdhani_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/font/rajdhani_bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/font/rajdhani_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/font/rajdhani_light.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/font/rajdhani_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/font/rajdhani_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/font/rajdhani_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/font/rajdhani_regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/font/rajdhani_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/font/rajdhani_semibold.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/layout/native_advertisement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/layout/native_advertisement.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-hdpi/icon.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-hdpi/icon_background.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-hdpi/icon_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-hdpi/icon_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-mdpi/icon.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-mdpi/icon_background.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-mdpi/icon_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-mdpi/icon_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xhdpi/icon.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xhdpi/icon_background.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xhdpi/icon_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xhdpi/icon_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_background.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon_background.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon_foreground.webp -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon_round.webp -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /assets/badges/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/badges/GitHub.png -------------------------------------------------------------------------------- /assets/badges/PlayStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/badges/PlayStore.png -------------------------------------------------------------------------------- /assets/brands/BlackBerry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/BlackBerry.png -------------------------------------------------------------------------------- /assets/brands/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/Google.png -------------------------------------------------------------------------------- /assets/brands/J2ME-Loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/J2ME-Loader.png -------------------------------------------------------------------------------- /assets/brands/JL-Mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/JL-Mod.png -------------------------------------------------------------------------------- /assets/brands/LG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/LG.png -------------------------------------------------------------------------------- /assets/brands/Motorola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/Motorola.png -------------------------------------------------------------------------------- /assets/brands/Nokia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/Nokia.png -------------------------------------------------------------------------------- /assets/brands/Samsung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/Samsung.png -------------------------------------------------------------------------------- /assets/brands/Sony Ericsson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/brands/Sony Ericsson.png -------------------------------------------------------------------------------- /assets/flags/BR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/BR.gif -------------------------------------------------------------------------------- /assets/flags/CZ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/CZ.gif -------------------------------------------------------------------------------- /assets/flags/DE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/DE.gif -------------------------------------------------------------------------------- /assets/flags/ES.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/ES.gif -------------------------------------------------------------------------------- /assets/flags/FR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/FR.gif -------------------------------------------------------------------------------- /assets/flags/ID.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/ID.gif -------------------------------------------------------------------------------- /assets/flags/IT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/IT.gif -------------------------------------------------------------------------------- /assets/flags/PL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/PL.gif -------------------------------------------------------------------------------- /assets/flags/PT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/PT.gif -------------------------------------------------------------------------------- /assets/flags/US.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/assets/flags/US.gif -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/firebase.json -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/l10n.yaml -------------------------------------------------------------------------------- /lib/application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application.dart -------------------------------------------------------------------------------- /lib/application/core/configuration/global_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/configuration/global_configuration.dart -------------------------------------------------------------------------------- /lib/application/core/configuration/router_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/configuration/router_configuration.dart -------------------------------------------------------------------------------- /lib/application/core/configuration/theme_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/configuration/theme_configuration.dart -------------------------------------------------------------------------------- /lib/application/core/entities/game_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/entities/game_entity.dart -------------------------------------------------------------------------------- /lib/application/core/entities/game_metadata_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/entities/game_metadata_entity.dart -------------------------------------------------------------------------------- /lib/application/core/entities/midlet_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/entities/midlet_entity.dart -------------------------------------------------------------------------------- /lib/application/core/entities/review_entity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/entities/review_entity.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/emulators_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/emulators_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/l10n_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/l10n_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/language_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/language_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/palette_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/palette_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/progress_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/progress_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/tag_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/tag_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/typographies_enumeration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/typographies_enumeration.dart -------------------------------------------------------------------------------- /lib/application/core/enumerations/views_enumerations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/enumerations/views_enumerations.dart -------------------------------------------------------------------------------- /lib/application/core/extensions/messenger_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/extensions/messenger_extension.dart -------------------------------------------------------------------------------- /lib/application/core/extensions/router_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/core/extensions/router_extension.dart -------------------------------------------------------------------------------- /lib/application/interfaces/box_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/interfaces/box_interface.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/about_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/about_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/action_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/action_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/cover_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/cover_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/header_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/header_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/play_button_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/play_button_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/previews_dialog_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/previews_dialog_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/previews_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/previews_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/rating_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/rating_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/related_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/related_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/submit_rating_modal_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/submit_rating_modal_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/components/top_reviews_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/components/top_reviews_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/details_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/details_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/details_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/details_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/details/details_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/details/details_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/details_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/details_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/emulator_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/emulator_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/emulator_tile_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/emulator_tile_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/header_section_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/header_section_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/install_button_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/install_button_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/install_modal_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/install_modal_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/components/source_modal_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/components/source_modal_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/installation_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/installation_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/installation_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/installation_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/installation/installation_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/installation/installation_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/launcher/launcher_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/launcher/launcher_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/launcher/launcher_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/launcher/launcher_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/launcher/launcher_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/launcher/launcher_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/login/components/google_sign_in_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/login/components/google_sign_in_button.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/login/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/login/login_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/login/login_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/login/login_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/login/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/login/login_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/components/list_view_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/components/list_view_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/components/midlet_tile_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/components/midlet_tile_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/components/midlets_counter_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/components/midlets_counter_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/midlets_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/midlets_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/midlets_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/midlets_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/midlets/midlets_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/midlets/midlets_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/components/list_view_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/components/list_view_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/components/review_tile_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/components/review_tile_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/components/score_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/components/score_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/components/submit_review_button_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/components/submit_review_button_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/components/submit_review_modal_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/components/submit_review_modal_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/reviews_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/reviews_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/reviews_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/reviews_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/reviews/reviews_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/reviews/reviews_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/filter_button_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/filter_button_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/list_view_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/list_view_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/modal_categories_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/modal_categories_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/modal_publisher_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/modal_publisher_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/modal_release_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/modal_release_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/search_bar_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/search_bar_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/components/suggestion_overlay_component.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/components/suggestion_overlay_component.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/search_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/search_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/search_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/search_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/search/views/search_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/search/views/search_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/update/components/update_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/update/components/update_button.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/update/update_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/update/update_controller.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/update/update_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/update/update_handler.dart -------------------------------------------------------------------------------- /lib/application/presenter/library/update/update_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/library/update/update_view.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/advertisement_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/advertisement_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/button_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/confetti_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/confetti_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/error_message_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/error_message_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/gradient_button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/gradient_button_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/loading_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/modal_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/modal_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/rating_stars_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/rating_stars_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/section_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/section_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/tags_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/tags_widget.dart -------------------------------------------------------------------------------- /lib/application/presenter/widgets/thumbnail_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/presenter/widgets/thumbnail_widget.dart -------------------------------------------------------------------------------- /lib/application/repositories/bucket_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/repositories/bucket_repository.dart -------------------------------------------------------------------------------- /lib/application/repositories/hive_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/repositories/hive_repository.dart -------------------------------------------------------------------------------- /lib/application/repositories/supabase_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/repositories/supabase_repository.dart -------------------------------------------------------------------------------- /lib/application/services/activity_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/activity_service.dart -------------------------------------------------------------------------------- /lib/application/services/admob_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/admob_service.dart -------------------------------------------------------------------------------- /lib/application/services/android_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/android_service.dart -------------------------------------------------------------------------------- /lib/application/services/firebase_messaging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/firebase_messaging_service.dart -------------------------------------------------------------------------------- /lib/application/services/github_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/github_service.dart -------------------------------------------------------------------------------- /lib/application/services/google_authentication_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/google_authentication_service.dart -------------------------------------------------------------------------------- /lib/application/services/supabase_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/application/services/supabase_service.dart -------------------------------------------------------------------------------- /lib/l10n/l10n_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/l10n/l10n_en.arb -------------------------------------------------------------------------------- /lib/l10n/l10n_id.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/l10n/l10n_id.arb -------------------------------------------------------------------------------- /lib/l10n/l10n_pt.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/l10n/l10n_pt.arb -------------------------------------------------------------------------------- /lib/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/logger.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/lib/main.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/supabase/.gitignore -------------------------------------------------------------------------------- /supabase/migrations/20250706192600_create_starting_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/supabase/migrations/20250706192600_create_starting_views.sql -------------------------------------------------------------------------------- /supabase/migrations/20250706193000_create_starting_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/supabase/migrations/20250706193000_create_starting_tables.sql -------------------------------------------------------------------------------- /supabase/migrations/20250706193400_create_starting_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KidGbzin/MIDlet-Store/HEAD/supabase/migrations/20250706193400_create_starting_functions.sql --------------------------------------------------------------------------------