├── .commitlintrc.yaml ├── .cspell ├── docs-term.txt ├── flutter-term.txt ├── git-term.txt ├── github-action-term.txt ├── ios-term.txt ├── project-term.txt └── widgetbook-term.txt ├── .cursor ├── .gitignore ├── mcp.sample.json ├── memories │ └── .gitignore └── rules │ ├── architecture-rule.mdc │ ├── branch-rule.mdc │ ├── memory.mdc │ └── pr-creation-rule.mdc ├── .cursorignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── improve.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── cleanup-copilot-settings │ │ └── action.yaml │ ├── cleanup-samples │ │ └── action.yaml │ ├── fill-project-name │ │ └── action.yaml │ ├── generate-issue-matrix-at-initialization │ │ └── action.yaml │ ├── remove-unnecessary-files │ │ └── action.yaml │ └── setup-application-runtime │ │ └── action.yaml ├── initialization │ ├── ABOUT_ICON.md │ ├── AI_DEVELOPMENT_WORKFLOW.md │ ├── AI_PROJECT_CONTEXT.md │ ├── AI_TECHNICAL_SPEC.md │ ├── APP_DISTRIBUTION.md │ ├── ARCHITECTURE.md │ ├── BRANCH_RULE.md │ ├── COMMIT_CONVENTION.md │ ├── ENVIRONMENT_ROLES.md │ ├── GITHUB_AUTO_ASSIGNMENT.md │ ├── GITHUB_PAGES_PREVIEW.md │ ├── LOCALIZATION.md │ ├── LOG_COLLECTION_POLICY.md │ ├── MERGE_QUEUE_SETUP.md │ ├── MODELING.md │ ├── ORIENTATION.md │ ├── PR_POLICY.md │ ├── README.md │ ├── RENAME_APPLICATION_ID.md │ ├── RESPONSIVE_DESIGN.md │ ├── SPELL_CHECK_SETUP.md │ ├── SPLASH_SCREEN.md │ ├── TARGET_SDK.md │ ├── TEST_POLICY.md │ └── TOOL_VERSION.md ├── labeler.yml ├── labels.yml ├── problem_matchers │ └── custom_lint.json └── workflows │ ├── auto-assign.yaml │ ├── check-pr.yaml │ ├── github-pages-pull-request.yml │ ├── initialization.yaml │ ├── issue-dependabot.yml │ ├── labeler.yml │ ├── labels.yml │ ├── merge-queue.yaml │ ├── pr-rebase-detector.yaml │ ├── wc-changes.yml │ ├── wc-check-code-spell.yaml │ ├── wc-check-dependencies.yml │ ├── wc-check-diff.yaml │ └── wc-check-style-dprint.yaml ├── .gitignore ├── .husky └── commit-msg ├── .idea ├── jsonSchemas.xml └── runConfigurations │ ├── dev_debug.xml │ ├── prd_debug.xml │ ├── samples_github_app.xml │ ├── stg_debug.xml │ └── ui_catalog.xml ├── .vscode ├── .gitignore ├── extensions.json ├── launch.json └── settings.json ├── LICENSE.md ├── README.md ├── analysis_options.yaml ├── apps ├── app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── dev │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ └── ic_launcher.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 │ │ │ │ │ └── colors.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── jp │ │ │ │ │ │ └── co │ │ │ │ │ │ └── yumemi │ │ │ │ │ │ └── flutter_app │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ ├── prd │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ └── ic_launcher.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 │ │ │ │ │ └── colors.xml │ │ │ │ ├── profile │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── stg │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── ic_launcher_foreground.png │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_launcher.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 │ │ │ │ └── colors.xml │ │ ├── build.gradle.kts │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle.kts │ ├── assets │ │ ├── launcher_icon │ │ │ ├── icon_adaptive_dev.png │ │ │ ├── icon_adaptive_prd.png │ │ │ ├── icon_adaptive_stg.png │ │ │ ├── icon_dev.png │ │ │ ├── icon_prd.png │ │ │ └── icon_stg.png │ │ └── yumemi_logo.png │ ├── build.yaml │ ├── flavor │ │ ├── dev.json │ │ ├── prd.json │ │ └── stg.json │ ├── flutter_launcher_icons-dev.yaml │ ├── flutter_launcher_icons-prd.yaml │ ├── flutter_launcher_icons-stg.yaml │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon-dev.appiconset │ │ │ │ │ ├── AppIcon-dev-1024x1024@1x.png │ │ │ │ │ ├── AppIcon-dev-20x20@1x.png │ │ │ │ │ ├── AppIcon-dev-20x20@2x.png │ │ │ │ │ ├── AppIcon-dev-20x20@3x.png │ │ │ │ │ ├── AppIcon-dev-29x29@1x.png │ │ │ │ │ ├── AppIcon-dev-29x29@2x.png │ │ │ │ │ ├── AppIcon-dev-29x29@3x.png │ │ │ │ │ ├── AppIcon-dev-40x40@1x.png │ │ │ │ │ ├── AppIcon-dev-40x40@2x.png │ │ │ │ │ ├── AppIcon-dev-40x40@3x.png │ │ │ │ │ ├── AppIcon-dev-50x50@1x.png │ │ │ │ │ ├── AppIcon-dev-50x50@2x.png │ │ │ │ │ ├── AppIcon-dev-57x57@1x.png │ │ │ │ │ ├── AppIcon-dev-57x57@2x.png │ │ │ │ │ ├── AppIcon-dev-60x60@2x.png │ │ │ │ │ ├── AppIcon-dev-60x60@3x.png │ │ │ │ │ ├── AppIcon-dev-72x72@1x.png │ │ │ │ │ ├── AppIcon-dev-72x72@2x.png │ │ │ │ │ ├── AppIcon-dev-76x76@1x.png │ │ │ │ │ ├── AppIcon-dev-76x76@2x.png │ │ │ │ │ ├── AppIcon-dev-83.5x83.5@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon-prd.appiconset │ │ │ │ │ ├── AppIcon-prd-1024x1024@1x.png │ │ │ │ │ ├── AppIcon-prd-20x20@1x.png │ │ │ │ │ ├── AppIcon-prd-20x20@2x.png │ │ │ │ │ ├── AppIcon-prd-20x20@3x.png │ │ │ │ │ ├── AppIcon-prd-29x29@1x.png │ │ │ │ │ ├── AppIcon-prd-29x29@2x.png │ │ │ │ │ ├── AppIcon-prd-29x29@3x.png │ │ │ │ │ ├── AppIcon-prd-40x40@1x.png │ │ │ │ │ ├── AppIcon-prd-40x40@2x.png │ │ │ │ │ ├── AppIcon-prd-40x40@3x.png │ │ │ │ │ ├── AppIcon-prd-50x50@1x.png │ │ │ │ │ ├── AppIcon-prd-50x50@2x.png │ │ │ │ │ ├── AppIcon-prd-57x57@1x.png │ │ │ │ │ ├── AppIcon-prd-57x57@2x.png │ │ │ │ │ ├── AppIcon-prd-60x60@2x.png │ │ │ │ │ ├── AppIcon-prd-60x60@3x.png │ │ │ │ │ ├── AppIcon-prd-72x72@1x.png │ │ │ │ │ ├── AppIcon-prd-72x72@2x.png │ │ │ │ │ ├── AppIcon-prd-76x76@1x.png │ │ │ │ │ ├── AppIcon-prd-76x76@2x.png │ │ │ │ │ ├── AppIcon-prd-83.5x83.5@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon-stg.appiconset │ │ │ │ │ ├── AppIcon-stg-1024x1024@1x.png │ │ │ │ │ ├── AppIcon-stg-20x20@1x.png │ │ │ │ │ ├── AppIcon-stg-20x20@2x.png │ │ │ │ │ ├── AppIcon-stg-20x20@3x.png │ │ │ │ │ ├── AppIcon-stg-29x29@1x.png │ │ │ │ │ ├── AppIcon-stg-29x29@2x.png │ │ │ │ │ ├── AppIcon-stg-29x29@3x.png │ │ │ │ │ ├── AppIcon-stg-40x40@1x.png │ │ │ │ │ ├── AppIcon-stg-40x40@2x.png │ │ │ │ │ ├── AppIcon-stg-40x40@3x.png │ │ │ │ │ ├── AppIcon-stg-50x50@1x.png │ │ │ │ │ ├── AppIcon-stg-50x50@2x.png │ │ │ │ │ ├── AppIcon-stg-57x57@1x.png │ │ │ │ │ ├── AppIcon-stg-57x57@2x.png │ │ │ │ │ ├── AppIcon-stg-60x60@2x.png │ │ │ │ │ ├── AppIcon-stg-60x60@3x.png │ │ │ │ │ ├── AppIcon-stg-72x72@1x.png │ │ │ │ │ ├── AppIcon-stg-72x72@2x.png │ │ │ │ │ ├── AppIcon-stg-76x76@1x.png │ │ │ │ │ ├── AppIcon-stg-76x76@2x.png │ │ │ │ │ ├── AppIcon-stg-83.5x83.5@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── RunnerTests │ │ │ └── RunnerTests.swift │ │ └── scripts │ │ │ └── extract_dart_defines.sh │ ├── lib │ │ ├── app_initializer.dart │ │ ├── composition_root │ │ │ ├── data_sources │ │ │ │ ├── shared_preference_data_source.dart │ │ │ │ └── shared_preference_data_source.g.dart │ │ │ ├── repositories │ │ │ │ ├── operational_settings_repository.dart │ │ │ │ ├── operational_settings_repository.g.dart │ │ │ │ ├── theme_setting_repository.dart │ │ │ │ └── theme_setting_repository.g.dart │ │ │ └── use_cases │ │ │ │ ├── get_force_update_policy_use_case.dart │ │ │ │ ├── get_force_update_policy_use_case.g.dart │ │ │ │ ├── get_maintenance_policy_use_case.dart │ │ │ │ └── get_maintenance_policy_use_case.g.dart │ │ ├── configuration │ │ │ ├── build_config.dart │ │ │ ├── build_config.freezed.dart │ │ │ └── flavor.dart │ │ ├── gen │ │ │ └── assets │ │ │ │ └── assets.gen.dart │ │ ├── main.dart │ │ ├── main_page.dart │ │ ├── presentation │ │ │ ├── providers │ │ │ │ ├── build_config_provider.dart │ │ │ │ ├── build_config_provider.g.dart │ │ │ │ ├── force_update_policy_notifier_provider.dart │ │ │ │ ├── force_update_policy_notifier_provider.g.dart │ │ │ │ ├── maintenance_policy_notifier_provider.dart │ │ │ │ ├── maintenance_policy_notifier_provider.g.dart │ │ │ │ ├── theme_setting_provider.dart │ │ │ │ └── theme_setting_provider.g.dart │ │ │ └── ui │ │ │ │ ├── home_page.dart │ │ │ │ ├── operational_settings │ │ │ │ └── maintenance_page.dart │ │ │ │ └── setting │ │ │ │ ├── components │ │ │ │ ├── setting_section_spacer.dart │ │ │ │ └── setting_section_title.dart │ │ │ │ └── setting_page.dart │ │ └── router │ │ │ ├── router.dart │ │ │ ├── router.g.dart │ │ │ └── routes │ │ │ ├── main │ │ │ ├── home │ │ │ │ ├── debug_page_route.dart │ │ │ │ └── home_shell_branch.dart │ │ │ ├── main_page_shell_route.dart │ │ │ └── setting │ │ │ │ └── setting_shell_branch.dart │ │ │ └── maintenance_page_route.dart │ └── pubspec.yaml └── catalog │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── build.yaml │ ├── dart_test.yaml │ ├── docs │ ├── preview.jpg │ └── ui_structure.jpg │ ├── lib │ ├── main.dart │ ├── main.directories.g.dart │ └── use_case │ │ ├── internal_design_ui │ │ └── components │ │ │ └── list_tiles.dart │ │ └── material_components │ │ ├── actions │ │ ├── common_buttons.dart │ │ ├── floating_action_button.dart │ │ ├── icon_button.dart │ │ └── segmented_button.dart │ │ ├── communication │ │ ├── badge.dart │ │ ├── progress_indicator.dart │ │ └── snack_bar.dart │ │ ├── containment │ │ ├── alert_dialog.dart │ │ ├── bottom_sheet.dart │ │ ├── card.dart │ │ ├── divider.dart │ │ └── list_tile.dart │ │ ├── navigation │ │ ├── app_bar.dart │ │ ├── bottom_app_bar.dart │ │ ├── navigation_bar.dart │ │ ├── navigation_drawer.dart │ │ ├── navigation_rail.dart │ │ └── tab_bar.dart │ │ ├── selection │ │ ├── check_box.dart │ │ ├── chip.dart │ │ ├── date_picker.dart │ │ ├── date_range_picker.dart │ │ ├── menu.dart │ │ ├── radio.dart │ │ ├── slider.dart │ │ ├── switch.dart │ │ └── time_picker.dart │ │ ├── style │ │ ├── color_scheme.dart │ │ └── typography.dart │ │ └── text_inputs │ │ └── text_field.dart │ ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── pubspec.yaml │ ├── test │ ├── flutter_test_config.dart │ ├── material_components │ │ ├── alert_dialog_golden_test.dart │ │ ├── app_bar_golden_test.dart │ │ ├── badge_golden_test.dart │ │ ├── bottom_app_bar_golden_test.dart │ │ ├── bottom_sheet_golden_test.dart │ │ ├── card_golden_test.dart │ │ ├── check_box_golden_test.dart │ │ ├── chip_golden_test.dart │ │ ├── color_scheme_golden_test.dart │ │ ├── common_buttons_golden_test.dart │ │ ├── date_picker_golden_test.dart │ │ ├── date_range_picker_golden_test.dart │ │ ├── divider_golden_test.dart │ │ ├── floating_action_button_golden_test.dart │ │ ├── icon_button_golden_test.dart │ │ ├── list_tile_golden_test.dart │ │ ├── menu_golden_test.dart │ │ ├── navigation_bar_golden_test.dart │ │ ├── navigation_drawer_golden_test.dart │ │ ├── navigation_rail_golden_test.dart │ │ ├── progress_indicator_golden_test.dart │ │ ├── radio_golden_test.dart │ │ ├── segmented_button_golden_test.dart │ │ ├── slider_golden_test.dart │ │ ├── snack_bar_golden_test.dart │ │ ├── switch_golden_test.dart │ │ ├── tab_bar_golden_test.dart │ │ ├── text_field_golden_test.dart │ │ ├── time_picker_golden_test.dart │ │ └── typography_golden_test.dart │ ├── test_app.dart │ └── test_devices.dart │ └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── bun.lock ├── cspell.jsonc ├── docs ├── ARCHITECTURE.md ├── BRANCH.md ├── COMMIT_CONVENTION.md ├── COPILOT.md ├── GET_STARTED.md ├── MERGE_QUEUE.md ├── MODELING.md ├── PR_GUIDELINES.md ├── SETUP_MCP_SERVER.md ├── SPELL_CHECK.md ├── UPGRADE_FLUTTER.md └── images │ ├── branch-rules-status-check.png │ └── merge-queue-check.png ├── dprint.jsonc ├── mise.toml ├── package.json ├── packages ├── application │ ├── .gitignore │ ├── lib │ │ └── operational_settings │ │ │ ├── get_force_update_policy_use_case.dart │ │ │ └── get_maintenance_policy_use_case.dart │ ├── pubspec.yaml │ └── test │ │ └── operational_settings │ │ └── get_force_update_policy_use_case_test.dart ├── debug │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── build.yaml │ ├── lib │ │ ├── src │ │ │ ├── data │ │ │ │ └── api │ │ │ │ │ └── provider │ │ │ │ │ ├── exception_generator_api.dart │ │ │ │ │ └── exception_generator_api.g.dart │ │ │ └── ui │ │ │ │ ├── debug_page.dart │ │ │ │ ├── debug_page.g.dart │ │ │ │ ├── navigation_debug_page.dart │ │ │ │ ├── shake_detection.dart │ │ │ │ ├── talker_page.dart │ │ │ │ └── talker_page.g.dart │ │ └── ui.dart │ └── pubspec.yaml ├── design_theme │ ├── .gitignore │ ├── lib │ │ ├── src │ │ │ ├── theme_extensions │ │ │ │ ├── app_colors.dart │ │ │ │ └── app_colors.g.theme.dart │ │ │ └── themes │ │ │ │ ├── app_bar_theme.dart │ │ │ │ ├── bottom_navigation_bar_theme.dart │ │ │ │ ├── color_schemes.dart │ │ │ │ └── theme.dart │ │ ├── theme_extensions.dart │ │ └── themes.dart │ ├── pubspec.yaml │ └── test │ │ └── internal_design_theme_test.dart ├── design_ui │ ├── .gitignore │ ├── build.yaml │ ├── lib │ │ ├── common_assets.dart │ │ ├── components │ │ │ └── list_tiles │ │ │ │ └── text_list_tile.dart │ │ ├── i18n.dart │ │ └── src │ │ │ └── gen │ │ │ ├── assets │ │ │ └── assets.gen.dart │ │ │ └── i18n │ │ │ ├── strings.g.dart │ │ │ ├── strings_en.g.dart │ │ │ └── strings_ja.g.dart │ ├── pubspec.yaml │ ├── res │ │ ├── assets │ │ │ └── yumemi_logo.png │ │ └── i18n │ │ │ ├── en.i18n.json │ │ │ └── ja.i18n.json │ └── slang.yaml ├── domain_logic │ ├── .gitignore │ ├── lib │ │ ├── operational_settings │ │ │ └── operational_settings_repository.dart │ │ └── theme_setting │ │ │ └── theme_setting_repository.dart │ └── pubspec.yaml ├── domain_model │ ├── .gitignore │ ├── build.yaml │ ├── lib │ │ ├── operational_settings │ │ │ ├── operating_system.dart │ │ │ ├── operational_settings.dart │ │ │ └── operational_settings.freezed.dart │ │ └── theme_setting │ │ │ └── theme_setting.dart │ ├── pubspec.yaml │ └── test │ │ └── operational_settings_test.dart ├── infrastructure │ ├── .gitignore │ ├── lib │ │ ├── operational_settings │ │ │ └── operational_settings_repository_impl.dart │ │ ├── shared_preferences │ │ │ ├── shared_preference_data_source.dart │ │ │ └── shared_preferences_keys.dart │ │ └── theme_setting │ │ │ └── theme_setting_repository_impl.dart │ └── pubspec.yaml ├── shared │ ├── .gitignore │ ├── lib │ │ └── logger.dart │ └── pubspec.yaml ├── util_logic │ ├── .gitignore │ ├── lib │ │ └── extension │ │ │ └── enum.dart │ └── pubspec.yaml ├── util_ui │ ├── .gitignore │ ├── lib │ │ ├── custom_app_lifecycle_listener.dart │ │ └── snack_bar_manager.dart │ └── pubspec.yaml └── utils │ └── pagination │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── build.yaml │ ├── lib │ ├── exception.dart │ ├── model.dart │ ├── provider.dart │ ├── src │ │ ├── exception │ │ │ └── paging_exception.dart │ │ ├── extension │ │ │ └── async_value.dart │ │ ├── model │ │ │ ├── paging_data.dart │ │ │ └── paging_data.freezed.dart │ │ ├── provider │ │ │ └── paging_async_notifier.dart │ │ └── ui │ │ │ └── common_paging_view.dart │ └── ui.dart │ └── pubspec.yaml ├── pubspec.lock ├── pubspec.yaml ├── removal_list_on_use_template.txt ├── samples ├── github_app │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── build.yaml │ ├── lib │ │ ├── data │ │ │ ├── json_type.dart │ │ │ └── providers │ │ │ │ ├── dio.dart │ │ │ │ ├── dio.g.dart │ │ │ │ ├── github_access_token.dart │ │ │ │ ├── github_access_token.g.dart │ │ │ │ ├── repository.dart │ │ │ │ └── repository.g.dart │ │ ├── domain │ │ │ └── models │ │ │ │ ├── exception.dart │ │ │ │ ├── github_repository.dart │ │ │ │ ├── github_repository.freezed.dart │ │ │ │ └── github_repository.g.dart │ │ ├── main.dart │ │ └── ui │ │ │ ├── pages │ │ │ ├── github_repository_detail_page.dart │ │ │ └── github_repository_list_page.dart │ │ │ └── providers │ │ │ ├── github_repository_list_notifier.dart │ │ │ ├── scroll_notifier.dart │ │ │ └── scroll_notifier.g.dart │ ├── pubspec.yaml │ └── web │ │ ├── favicon.png │ │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json └── webview │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── webview │ │ │ │ │ └── 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 │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── lib │ └── main.dart │ └── pubspec.yaml ├── scripts ├── common.sh ├── diff.sh ├── fix.sh ├── generate_issue_matrix.dart └── report-custom-lint-ci.sh └── tools ├── bootstrap.sh ├── diff_yaml.dart ├── gen_labeler.dart ├── gen_labels.dart ├── model ├── melos_package.dart └── package_info.dart ├── rename-application-id.sh ├── templates └── issue_improve.md ├── update_package.dart └── utils ├── command_runner.dart ├── constants.dart ├── label.dart ├── logger.dart ├── melos.dart └── path.dart /.commitlintrc.yaml: -------------------------------------------------------------------------------- 1 | extends: 2 | - "@commitlint/config-conventional" 3 | -------------------------------------------------------------------------------- /.cspell/docs-term.txt: -------------------------------------------------------------------------------- 1 | gifs 2 | Angelov 3 | frontmatter 4 | -------------------------------------------------------------------------------- /.cspell/flutter-term.txt: -------------------------------------------------------------------------------- 1 | dartdocs 2 | -------------------------------------------------------------------------------- /.cspell/git-term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cspell/git-term.txt -------------------------------------------------------------------------------- /.cspell/github-action-term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cspell/github-action-term.txt -------------------------------------------------------------------------------- /.cspell/ios-term.txt: -------------------------------------------------------------------------------- 1 | xcassets 2 | xcworkspace 3 | xcodes 4 | lproj 5 | -------------------------------------------------------------------------------- /.cspell/project-term.txt: -------------------------------------------------------------------------------- 1 | yumemi 2 | -------------------------------------------------------------------------------- /.cspell/widgetbook-term.txt: -------------------------------------------------------------------------------- 1 | Viewports 2 | -------------------------------------------------------------------------------- /.cursor/.gitignore: -------------------------------------------------------------------------------- 1 | mcp.json 2 | -------------------------------------------------------------------------------- /.cursor/mcp.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursor/mcp.sample.json -------------------------------------------------------------------------------- /.cursor/memories/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /.cursor/rules/architecture-rule.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursor/rules/architecture-rule.mdc -------------------------------------------------------------------------------- /.cursor/rules/branch-rule.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursor/rules/branch-rule.mdc -------------------------------------------------------------------------------- /.cursor/rules/memory.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursor/rules/memory.mdc -------------------------------------------------------------------------------- /.cursor/rules/pr-creation-rule.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursor/rules/pr-creation-rule.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.cursorignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/ISSUE_TEMPLATE/improve.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/cleanup-copilot-settings/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/cleanup-copilot-settings/action.yaml -------------------------------------------------------------------------------- /.github/actions/cleanup-samples/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/cleanup-samples/action.yaml -------------------------------------------------------------------------------- /.github/actions/fill-project-name/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/fill-project-name/action.yaml -------------------------------------------------------------------------------- /.github/actions/generate-issue-matrix-at-initialization/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/generate-issue-matrix-at-initialization/action.yaml -------------------------------------------------------------------------------- /.github/actions/remove-unnecessary-files/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/remove-unnecessary-files/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup-application-runtime/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/actions/setup-application-runtime/action.yaml -------------------------------------------------------------------------------- /.github/initialization/ABOUT_ICON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/ABOUT_ICON.md -------------------------------------------------------------------------------- /.github/initialization/AI_DEVELOPMENT_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/AI_DEVELOPMENT_WORKFLOW.md -------------------------------------------------------------------------------- /.github/initialization/AI_PROJECT_CONTEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/AI_PROJECT_CONTEXT.md -------------------------------------------------------------------------------- /.github/initialization/AI_TECHNICAL_SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/AI_TECHNICAL_SPEC.md -------------------------------------------------------------------------------- /.github/initialization/APP_DISTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/APP_DISTRIBUTION.md -------------------------------------------------------------------------------- /.github/initialization/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/ARCHITECTURE.md -------------------------------------------------------------------------------- /.github/initialization/BRANCH_RULE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/BRANCH_RULE.md -------------------------------------------------------------------------------- /.github/initialization/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /.github/initialization/ENVIRONMENT_ROLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/ENVIRONMENT_ROLES.md -------------------------------------------------------------------------------- /.github/initialization/GITHUB_AUTO_ASSIGNMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/GITHUB_AUTO_ASSIGNMENT.md -------------------------------------------------------------------------------- /.github/initialization/GITHUB_PAGES_PREVIEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/GITHUB_PAGES_PREVIEW.md -------------------------------------------------------------------------------- /.github/initialization/LOCALIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/LOCALIZATION.md -------------------------------------------------------------------------------- /.github/initialization/LOG_COLLECTION_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/LOG_COLLECTION_POLICY.md -------------------------------------------------------------------------------- /.github/initialization/MERGE_QUEUE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/MERGE_QUEUE_SETUP.md -------------------------------------------------------------------------------- /.github/initialization/MODELING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/MODELING.md -------------------------------------------------------------------------------- /.github/initialization/ORIENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/ORIENTATION.md -------------------------------------------------------------------------------- /.github/initialization/PR_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/PR_POLICY.md -------------------------------------------------------------------------------- /.github/initialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/README.md -------------------------------------------------------------------------------- /.github/initialization/RENAME_APPLICATION_ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/RENAME_APPLICATION_ID.md -------------------------------------------------------------------------------- /.github/initialization/RESPONSIVE_DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/RESPONSIVE_DESIGN.md -------------------------------------------------------------------------------- /.github/initialization/SPELL_CHECK_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/SPELL_CHECK_SETUP.md -------------------------------------------------------------------------------- /.github/initialization/SPLASH_SCREEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/SPLASH_SCREEN.md -------------------------------------------------------------------------------- /.github/initialization/TARGET_SDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/TARGET_SDK.md -------------------------------------------------------------------------------- /.github/initialization/TEST_POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/TEST_POLICY.md -------------------------------------------------------------------------------- /.github/initialization/TOOL_VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/initialization/TOOL_VERSION.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/problem_matchers/custom_lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/problem_matchers/custom_lint.json -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/auto-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/check-pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/check-pr.yaml -------------------------------------------------------------------------------- /.github/workflows/github-pages-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/github-pages-pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/initialization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/initialization.yaml -------------------------------------------------------------------------------- /.github/workflows/issue-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/issue-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/merge-queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/merge-queue.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-rebase-detector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/pr-rebase-detector.yaml -------------------------------------------------------------------------------- /.github/workflows/wc-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/wc-changes.yml -------------------------------------------------------------------------------- /.github/workflows/wc-check-code-spell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/wc-check-code-spell.yaml -------------------------------------------------------------------------------- /.github/workflows/wc-check-dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/wc-check-dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/wc-check-diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/wc-check-diff.yaml -------------------------------------------------------------------------------- /.github/workflows/wc-check-style-dprint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.github/workflows/wc-check-style-dprint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.idea/jsonSchemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/jsonSchemas.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/dev_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/runConfigurations/dev_debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/prd_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/runConfigurations/prd_debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/samples_github_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/runConfigurations/samples_github_app.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/stg_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/runConfigurations/stg_debug.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/ui_catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.idea/runConfigurations/ui_catalog.xml -------------------------------------------------------------------------------- /.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | # mise関連の生成ファイル 2 | /mise-tools 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /apps/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/.gitignore -------------------------------------------------------------------------------- /apps/app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/.metadata -------------------------------------------------------------------------------- /apps/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/README.md -------------------------------------------------------------------------------- /apps/app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/.gitignore -------------------------------------------------------------------------------- /apps/app/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/build.gradle.kts -------------------------------------------------------------------------------- /apps/app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/dev/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/dev/res/values/colors.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/main/kotlin/jp/co/yumemi/flutter_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/kotlin/jp/co/yumemi/flutter_app/MainActivity.kt -------------------------------------------------------------------------------- /apps/app/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/prd/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/prd/res/values/colors.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /apps/app/android/app/src/stg/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/app/src/stg/res/values/colors.xml -------------------------------------------------------------------------------- /apps/app/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/build.gradle.kts -------------------------------------------------------------------------------- /apps/app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/gradle.properties -------------------------------------------------------------------------------- /apps/app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /apps/app/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/android/settings.gradle.kts -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_adaptive_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_adaptive_dev.png -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_adaptive_prd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_adaptive_prd.png -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_adaptive_stg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_adaptive_stg.png -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_dev.png -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_prd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_prd.png -------------------------------------------------------------------------------- /apps/app/assets/launcher_icon/icon_stg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/launcher_icon/icon_stg.png -------------------------------------------------------------------------------- /apps/app/assets/yumemi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/assets/yumemi_logo.png -------------------------------------------------------------------------------- /apps/app/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/build.yaml -------------------------------------------------------------------------------- /apps/app/flavor/dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flavor/dev.json -------------------------------------------------------------------------------- /apps/app/flavor/prd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flavor/prd.json -------------------------------------------------------------------------------- /apps/app/flavor/stg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flavor/stg.json -------------------------------------------------------------------------------- /apps/app/flutter_launcher_icons-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flutter_launcher_icons-dev.yaml -------------------------------------------------------------------------------- /apps/app/flutter_launcher_icons-prd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flutter_launcher_icons-prd.yaml -------------------------------------------------------------------------------- /apps/app/flutter_launcher_icons-stg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/flutter_launcher_icons-stg.yaml -------------------------------------------------------------------------------- /apps/app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/.gitignore -------------------------------------------------------------------------------- /apps/app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /apps/app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /apps/app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /apps/app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Podfile -------------------------------------------------------------------------------- /apps/app/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Podfile.lock -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /apps/app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /apps/app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-1024x1024@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-20x20@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-29x29@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-40x40@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-50x50@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-50x50@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-57x57@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-57x57@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-60x60@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-60x60@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-72x72@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-72x72@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-76x76@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-76x76@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/AppIcon-dev-83.5x83.5@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-1024x1024@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-20x20@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-29x29@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-40x40@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-50x50@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-50x50@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-57x57@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-57x57@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-60x60@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-60x60@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-72x72@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-72x72@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-76x76@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-76x76@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/AppIcon-prd-83.5x83.5@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-prd.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-1024x1024@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-20x20@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-29x29@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-40x40@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-50x50@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-50x50@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-57x57@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-57x57@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-60x60@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-60x60@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-72x72@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-72x72@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-76x76@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-76x76@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/AppIcon-stg-83.5x83.5@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /apps/app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /apps/app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /apps/app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /apps/app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /apps/app/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/app/ios/scripts/extract_dart_defines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/ios/scripts/extract_dart_defines.sh -------------------------------------------------------------------------------- /apps/app/lib/app_initializer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/app_initializer.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/data_sources/shared_preference_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/data_sources/shared_preference_data_source.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/data_sources/shared_preference_data_source.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/data_sources/shared_preference_data_source.g.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/repositories/operational_settings_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/repositories/operational_settings_repository.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/repositories/operational_settings_repository.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/repositories/operational_settings_repository.g.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/repositories/theme_setting_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/repositories/theme_setting_repository.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/repositories/theme_setting_repository.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/repositories/theme_setting_repository.g.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/use_cases/get_force_update_policy_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/use_cases/get_force_update_policy_use_case.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/use_cases/get_force_update_policy_use_case.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/use_cases/get_force_update_policy_use_case.g.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/use_cases/get_maintenance_policy_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/use_cases/get_maintenance_policy_use_case.dart -------------------------------------------------------------------------------- /apps/app/lib/composition_root/use_cases/get_maintenance_policy_use_case.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/composition_root/use_cases/get_maintenance_policy_use_case.g.dart -------------------------------------------------------------------------------- /apps/app/lib/configuration/build_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/configuration/build_config.dart -------------------------------------------------------------------------------- /apps/app/lib/configuration/build_config.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/configuration/build_config.freezed.dart -------------------------------------------------------------------------------- /apps/app/lib/configuration/flavor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/configuration/flavor.dart -------------------------------------------------------------------------------- /apps/app/lib/gen/assets/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/gen/assets/assets.gen.dart -------------------------------------------------------------------------------- /apps/app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/main.dart -------------------------------------------------------------------------------- /apps/app/lib/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/main_page.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/build_config_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/build_config_provider.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/build_config_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/build_config_provider.g.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/force_update_policy_notifier_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/force_update_policy_notifier_provider.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/force_update_policy_notifier_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/force_update_policy_notifier_provider.g.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/maintenance_policy_notifier_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/maintenance_policy_notifier_provider.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/maintenance_policy_notifier_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/maintenance_policy_notifier_provider.g.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/theme_setting_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/theme_setting_provider.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/providers/theme_setting_provider.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/providers/theme_setting_provider.g.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/ui/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/ui/home_page.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/ui/operational_settings/maintenance_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/ui/operational_settings/maintenance_page.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/ui/setting/components/setting_section_spacer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/ui/setting/components/setting_section_spacer.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/ui/setting/components/setting_section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/ui/setting/components/setting_section_title.dart -------------------------------------------------------------------------------- /apps/app/lib/presentation/ui/setting/setting_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/presentation/ui/setting/setting_page.dart -------------------------------------------------------------------------------- /apps/app/lib/router/router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/router.dart -------------------------------------------------------------------------------- /apps/app/lib/router/router.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/router.g.dart -------------------------------------------------------------------------------- /apps/app/lib/router/routes/main/home/debug_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/routes/main/home/debug_page_route.dart -------------------------------------------------------------------------------- /apps/app/lib/router/routes/main/home/home_shell_branch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/routes/main/home/home_shell_branch.dart -------------------------------------------------------------------------------- /apps/app/lib/router/routes/main/main_page_shell_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/routes/main/main_page_shell_route.dart -------------------------------------------------------------------------------- /apps/app/lib/router/routes/main/setting/setting_shell_branch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/routes/main/setting/setting_shell_branch.dart -------------------------------------------------------------------------------- /apps/app/lib/router/routes/maintenance_page_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/lib/router/routes/maintenance_page_route.dart -------------------------------------------------------------------------------- /apps/app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/app/pubspec.yaml -------------------------------------------------------------------------------- /apps/catalog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/.gitignore -------------------------------------------------------------------------------- /apps/catalog/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/.metadata -------------------------------------------------------------------------------- /apps/catalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/README.md -------------------------------------------------------------------------------- /apps/catalog/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/build.yaml -------------------------------------------------------------------------------- /apps/catalog/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/dart_test.yaml -------------------------------------------------------------------------------- /apps/catalog/docs/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/docs/preview.jpg -------------------------------------------------------------------------------- /apps/catalog/docs/ui_structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/docs/ui_structure.jpg -------------------------------------------------------------------------------- /apps/catalog/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/main.dart -------------------------------------------------------------------------------- /apps/catalog/lib/main.directories.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/main.directories.g.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/internal_design_ui/components/list_tiles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/internal_design_ui/components/list_tiles.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/actions/common_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/actions/common_buttons.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/actions/floating_action_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/actions/floating_action_button.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/actions/icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/actions/icon_button.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/actions/segmented_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/actions/segmented_button.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/communication/badge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/communication/badge.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/communication/progress_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/communication/progress_indicator.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/communication/snack_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/communication/snack_bar.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/containment/alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/containment/alert_dialog.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/containment/bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/containment/bottom_sheet.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/containment/card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/containment/card.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/containment/divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/containment/divider.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/containment/list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/containment/list_tile.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/app_bar.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/bottom_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/bottom_app_bar.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/navigation_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/navigation_bar.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/navigation_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/navigation_drawer.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/navigation_rail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/navigation_rail.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/navigation/tab_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/navigation/tab_bar.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/check_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/check_box.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/chip.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/date_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/date_picker.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/date_range_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/date_range_picker.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/menu.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/radio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/radio.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/slider.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/switch.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/selection/time_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/selection/time_picker.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/style/color_scheme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/style/color_scheme.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/style/typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/style/typography.dart -------------------------------------------------------------------------------- /apps/catalog/lib/use_case/material_components/text_inputs/text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/lib/use_case/material_components/text_inputs/text_field.dart -------------------------------------------------------------------------------- /apps/catalog/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/.gitignore -------------------------------------------------------------------------------- /apps/catalog/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /apps/catalog/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Podfile -------------------------------------------------------------------------------- /apps/catalog/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Podfile.lock -------------------------------------------------------------------------------- /apps/catalog/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/catalog/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /apps/catalog/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /apps/catalog/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /apps/catalog/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Info.plist -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /apps/catalog/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /apps/catalog/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/catalog/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/pubspec.yaml -------------------------------------------------------------------------------- /apps/catalog/test/flutter_test_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/flutter_test_config.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/alert_dialog_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/alert_dialog_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/app_bar_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/app_bar_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/badge_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/badge_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/bottom_app_bar_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/bottom_app_bar_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/bottom_sheet_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/bottom_sheet_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/card_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/card_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/check_box_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/check_box_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/chip_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/chip_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/color_scheme_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/color_scheme_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/common_buttons_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/common_buttons_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/date_picker_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/date_picker_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/date_range_picker_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/date_range_picker_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/divider_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/divider_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/floating_action_button_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/floating_action_button_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/icon_button_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/icon_button_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/list_tile_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/list_tile_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/menu_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/menu_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/navigation_bar_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/navigation_bar_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/navigation_drawer_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/navigation_drawer_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/navigation_rail_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/navigation_rail_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/progress_indicator_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/progress_indicator_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/radio_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/radio_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/segmented_button_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/segmented_button_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/slider_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/slider_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/snack_bar_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/snack_bar_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/switch_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/switch_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/tab_bar_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/tab_bar_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/text_field_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/text_field_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/time_picker_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/time_picker_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/material_components/typography_golden_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/material_components/typography_golden_test.dart -------------------------------------------------------------------------------- /apps/catalog/test/test_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/test_app.dart -------------------------------------------------------------------------------- /apps/catalog/test/test_devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/test/test_devices.dart -------------------------------------------------------------------------------- /apps/catalog/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/favicon.png -------------------------------------------------------------------------------- /apps/catalog/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/icons/Icon-192.png -------------------------------------------------------------------------------- /apps/catalog/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/icons/Icon-512.png -------------------------------------------------------------------------------- /apps/catalog/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /apps/catalog/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /apps/catalog/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/index.html -------------------------------------------------------------------------------- /apps/catalog/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/apps/catalog/web/manifest.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/bun.lock -------------------------------------------------------------------------------- /cspell.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/cspell.jsonc -------------------------------------------------------------------------------- /docs/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/BRANCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/BRANCH.md -------------------------------------------------------------------------------- /docs/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /docs/COPILOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/COPILOT.md -------------------------------------------------------------------------------- /docs/GET_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/GET_STARTED.md -------------------------------------------------------------------------------- /docs/MERGE_QUEUE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/MERGE_QUEUE.md -------------------------------------------------------------------------------- /docs/MODELING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/MODELING.md -------------------------------------------------------------------------------- /docs/PR_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/PR_GUIDELINES.md -------------------------------------------------------------------------------- /docs/SETUP_MCP_SERVER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/SETUP_MCP_SERVER.md -------------------------------------------------------------------------------- /docs/SPELL_CHECK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/SPELL_CHECK.md -------------------------------------------------------------------------------- /docs/UPGRADE_FLUTTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/UPGRADE_FLUTTER.md -------------------------------------------------------------------------------- /docs/images/branch-rules-status-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/images/branch-rules-status-check.png -------------------------------------------------------------------------------- /docs/images/merge-queue-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/docs/images/merge-queue-check.png -------------------------------------------------------------------------------- /dprint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/dprint.jsonc -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/package.json -------------------------------------------------------------------------------- /packages/application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/application/.gitignore -------------------------------------------------------------------------------- /packages/application/lib/operational_settings/get_force_update_policy_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/application/lib/operational_settings/get_force_update_policy_use_case.dart -------------------------------------------------------------------------------- /packages/application/lib/operational_settings/get_maintenance_policy_use_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/application/lib/operational_settings/get_maintenance_policy_use_case.dart -------------------------------------------------------------------------------- /packages/application/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/application/pubspec.yaml -------------------------------------------------------------------------------- /packages/application/test/operational_settings/get_force_update_policy_use_case_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/application/test/operational_settings/get_force_update_policy_use_case_test.dart -------------------------------------------------------------------------------- /packages/debug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/.gitignore -------------------------------------------------------------------------------- /packages/debug/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/.metadata -------------------------------------------------------------------------------- /packages/debug/README.md: -------------------------------------------------------------------------------- 1 | # internal_debug package 2 | -------------------------------------------------------------------------------- /packages/debug/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/build.yaml -------------------------------------------------------------------------------- /packages/debug/lib/src/data/api/provider/exception_generator_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/data/api/provider/exception_generator_api.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/data/api/provider/exception_generator_api.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/data/api/provider/exception_generator_api.g.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/debug_page.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/debug_page.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/debug_page.g.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/navigation_debug_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/navigation_debug_page.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/shake_detection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/shake_detection.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/talker_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/talker_page.dart -------------------------------------------------------------------------------- /packages/debug/lib/src/ui/talker_page.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/src/ui/talker_page.g.dart -------------------------------------------------------------------------------- /packages/debug/lib/ui.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/lib/ui.dart -------------------------------------------------------------------------------- /packages/debug/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/debug/pubspec.yaml -------------------------------------------------------------------------------- /packages/design_theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/.gitignore -------------------------------------------------------------------------------- /packages/design_theme/lib/src/theme_extensions/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/theme_extensions/app_colors.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/src/theme_extensions/app_colors.g.theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/theme_extensions/app_colors.g.theme.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/src/themes/app_bar_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/themes/app_bar_theme.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/src/themes/bottom_navigation_bar_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/themes/bottom_navigation_bar_theme.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/src/themes/color_schemes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/themes/color_schemes.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/src/themes/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/src/themes/theme.dart -------------------------------------------------------------------------------- /packages/design_theme/lib/theme_extensions.dart: -------------------------------------------------------------------------------- 1 | export 'src/theme_extensions/app_colors.dart'; 2 | -------------------------------------------------------------------------------- /packages/design_theme/lib/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/lib/themes.dart -------------------------------------------------------------------------------- /packages/design_theme/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/pubspec.yaml -------------------------------------------------------------------------------- /packages/design_theme/test/internal_design_theme_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_theme/test/internal_design_theme_test.dart -------------------------------------------------------------------------------- /packages/design_ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/.gitignore -------------------------------------------------------------------------------- /packages/design_ui/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/build.yaml -------------------------------------------------------------------------------- /packages/design_ui/lib/common_assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/common_assets.dart -------------------------------------------------------------------------------- /packages/design_ui/lib/components/list_tiles/text_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/components/list_tiles/text_list_tile.dart -------------------------------------------------------------------------------- /packages/design_ui/lib/i18n.dart: -------------------------------------------------------------------------------- 1 | export 'src/gen/i18n/strings.g.dart'; 2 | -------------------------------------------------------------------------------- /packages/design_ui/lib/src/gen/assets/assets.gen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/src/gen/assets/assets.gen.dart -------------------------------------------------------------------------------- /packages/design_ui/lib/src/gen/i18n/strings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/src/gen/i18n/strings.g.dart -------------------------------------------------------------------------------- /packages/design_ui/lib/src/gen/i18n/strings_en.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/src/gen/i18n/strings_en.g.dart -------------------------------------------------------------------------------- /packages/design_ui/lib/src/gen/i18n/strings_ja.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/lib/src/gen/i18n/strings_ja.g.dart -------------------------------------------------------------------------------- /packages/design_ui/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/pubspec.yaml -------------------------------------------------------------------------------- /packages/design_ui/res/assets/yumemi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/res/assets/yumemi_logo.png -------------------------------------------------------------------------------- /packages/design_ui/res/i18n/en.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/res/i18n/en.i18n.json -------------------------------------------------------------------------------- /packages/design_ui/res/i18n/ja.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/res/i18n/ja.i18n.json -------------------------------------------------------------------------------- /packages/design_ui/slang.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/design_ui/slang.yaml -------------------------------------------------------------------------------- /packages/domain_logic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_logic/.gitignore -------------------------------------------------------------------------------- /packages/domain_logic/lib/operational_settings/operational_settings_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_logic/lib/operational_settings/operational_settings_repository.dart -------------------------------------------------------------------------------- /packages/domain_logic/lib/theme_setting/theme_setting_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_logic/lib/theme_setting/theme_setting_repository.dart -------------------------------------------------------------------------------- /packages/domain_logic/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_logic/pubspec.yaml -------------------------------------------------------------------------------- /packages/domain_model/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/.gitignore -------------------------------------------------------------------------------- /packages/domain_model/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/build.yaml -------------------------------------------------------------------------------- /packages/domain_model/lib/operational_settings/operating_system.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/lib/operational_settings/operating_system.dart -------------------------------------------------------------------------------- /packages/domain_model/lib/operational_settings/operational_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/lib/operational_settings/operational_settings.dart -------------------------------------------------------------------------------- /packages/domain_model/lib/operational_settings/operational_settings.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/lib/operational_settings/operational_settings.freezed.dart -------------------------------------------------------------------------------- /packages/domain_model/lib/theme_setting/theme_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/lib/theme_setting/theme_setting.dart -------------------------------------------------------------------------------- /packages/domain_model/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/pubspec.yaml -------------------------------------------------------------------------------- /packages/domain_model/test/operational_settings_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/domain_model/test/operational_settings_test.dart -------------------------------------------------------------------------------- /packages/infrastructure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/infrastructure/.gitignore -------------------------------------------------------------------------------- /packages/infrastructure/lib/operational_settings/operational_settings_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/infrastructure/lib/operational_settings/operational_settings_repository_impl.dart -------------------------------------------------------------------------------- /packages/infrastructure/lib/shared_preferences/shared_preference_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/infrastructure/lib/shared_preferences/shared_preference_data_source.dart -------------------------------------------------------------------------------- /packages/infrastructure/lib/shared_preferences/shared_preferences_keys.dart: -------------------------------------------------------------------------------- 1 | enum SharedPreferencesKeys { 2 | themeSetting, 3 | } 4 | -------------------------------------------------------------------------------- /packages/infrastructure/lib/theme_setting/theme_setting_repository_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/infrastructure/lib/theme_setting/theme_setting_repository_impl.dart -------------------------------------------------------------------------------- /packages/infrastructure/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/infrastructure/pubspec.yaml -------------------------------------------------------------------------------- /packages/shared/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/shared/.gitignore -------------------------------------------------------------------------------- /packages/shared/lib/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/shared/lib/logger.dart -------------------------------------------------------------------------------- /packages/shared/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/shared/pubspec.yaml -------------------------------------------------------------------------------- /packages/util_logic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_logic/.gitignore -------------------------------------------------------------------------------- /packages/util_logic/lib/extension/enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_logic/lib/extension/enum.dart -------------------------------------------------------------------------------- /packages/util_logic/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_logic/pubspec.yaml -------------------------------------------------------------------------------- /packages/util_ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_ui/.gitignore -------------------------------------------------------------------------------- /packages/util_ui/lib/custom_app_lifecycle_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_ui/lib/custom_app_lifecycle_listener.dart -------------------------------------------------------------------------------- /packages/util_ui/lib/snack_bar_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_ui/lib/snack_bar_manager.dart -------------------------------------------------------------------------------- /packages/util_ui/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/util_ui/pubspec.yaml -------------------------------------------------------------------------------- /packages/utils/pagination/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/.gitignore -------------------------------------------------------------------------------- /packages/utils/pagination/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/.metadata -------------------------------------------------------------------------------- /packages/utils/pagination/README.md: -------------------------------------------------------------------------------- 1 | # utils_pagination package 2 | -------------------------------------------------------------------------------- /packages/utils/pagination/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/build.yaml -------------------------------------------------------------------------------- /packages/utils/pagination/lib/exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/exception.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/model.dart: -------------------------------------------------------------------------------- 1 | export 'src/model/paging_data.dart'; 2 | -------------------------------------------------------------------------------- /packages/utils/pagination/lib/provider.dart: -------------------------------------------------------------------------------- 1 | export 'src/provider/paging_async_notifier.dart'; 2 | -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/exception/paging_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/exception/paging_exception.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/extension/async_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/extension/async_value.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/model/paging_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/model/paging_data.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/model/paging_data.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/model/paging_data.freezed.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/provider/paging_async_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/provider/paging_async_notifier.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/src/ui/common_paging_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/lib/src/ui/common_paging_view.dart -------------------------------------------------------------------------------- /packages/utils/pagination/lib/ui.dart: -------------------------------------------------------------------------------- 1 | export 'src/ui/common_paging_view.dart'; 2 | -------------------------------------------------------------------------------- /packages/utils/pagination/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/packages/utils/pagination/pubspec.yaml -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /removal_list_on_use_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/removal_list_on_use_template.txt -------------------------------------------------------------------------------- /samples/github_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/.gitignore -------------------------------------------------------------------------------- /samples/github_app/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/.metadata -------------------------------------------------------------------------------- /samples/github_app/README.md: -------------------------------------------------------------------------------- 1 | # github_app 2 | 3 | A new Flutter project. 4 | -------------------------------------------------------------------------------- /samples/github_app/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/build.yaml -------------------------------------------------------------------------------- /samples/github_app/lib/data/json_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/json_type.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/dio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/dio.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/dio.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/dio.g.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/github_access_token.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/github_access_token.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/github_access_token.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/github_access_token.g.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/repository.dart -------------------------------------------------------------------------------- /samples/github_app/lib/data/providers/repository.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/data/providers/repository.g.dart -------------------------------------------------------------------------------- /samples/github_app/lib/domain/models/exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/domain/models/exception.dart -------------------------------------------------------------------------------- /samples/github_app/lib/domain/models/github_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/domain/models/github_repository.dart -------------------------------------------------------------------------------- /samples/github_app/lib/domain/models/github_repository.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/domain/models/github_repository.freezed.dart -------------------------------------------------------------------------------- /samples/github_app/lib/domain/models/github_repository.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/domain/models/github_repository.g.dart -------------------------------------------------------------------------------- /samples/github_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/main.dart -------------------------------------------------------------------------------- /samples/github_app/lib/ui/pages/github_repository_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/ui/pages/github_repository_detail_page.dart -------------------------------------------------------------------------------- /samples/github_app/lib/ui/pages/github_repository_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/ui/pages/github_repository_list_page.dart -------------------------------------------------------------------------------- /samples/github_app/lib/ui/providers/github_repository_list_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/ui/providers/github_repository_list_notifier.dart -------------------------------------------------------------------------------- /samples/github_app/lib/ui/providers/scroll_notifier.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/ui/providers/scroll_notifier.dart -------------------------------------------------------------------------------- /samples/github_app/lib/ui/providers/scroll_notifier.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/lib/ui/providers/scroll_notifier.g.dart -------------------------------------------------------------------------------- /samples/github_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/pubspec.yaml -------------------------------------------------------------------------------- /samples/github_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/favicon.png -------------------------------------------------------------------------------- /samples/github_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /samples/github_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /samples/github_app/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /samples/github_app/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /samples/github_app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/index.html -------------------------------------------------------------------------------- /samples/github_app/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/github_app/web/manifest.json -------------------------------------------------------------------------------- /samples/webview/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/.gitignore -------------------------------------------------------------------------------- /samples/webview/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/.metadata -------------------------------------------------------------------------------- /samples/webview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/README.md -------------------------------------------------------------------------------- /samples/webview/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:yumemi_lints/flutter/3.32/recommended.yaml 2 | -------------------------------------------------------------------------------- /samples/webview/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/.gitignore -------------------------------------------------------------------------------- /samples/webview/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/build.gradle.kts -------------------------------------------------------------------------------- /samples/webview/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/kotlin/com/example/webview/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/kotlin/com/example/webview/MainActivity.kt -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /samples/webview/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /samples/webview/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/build.gradle.kts -------------------------------------------------------------------------------- /samples/webview/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/gradle.properties -------------------------------------------------------------------------------- /samples/webview/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /samples/webview/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/android/settings.gradle.kts -------------------------------------------------------------------------------- /samples/webview/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/.gitignore -------------------------------------------------------------------------------- /samples/webview/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /samples/webview/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /samples/webview/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /samples/webview/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Podfile -------------------------------------------------------------------------------- /samples/webview/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Podfile.lock -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /samples/webview/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /samples/webview/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/Runner/Info.plist -------------------------------------------------------------------------------- /samples/webview/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /samples/webview/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /samples/webview/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/lib/main.dart -------------------------------------------------------------------------------- /samples/webview/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/samples/webview/pubspec.yaml -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/scripts/diff.sh -------------------------------------------------------------------------------- /scripts/fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/scripts/fix.sh -------------------------------------------------------------------------------- /scripts/generate_issue_matrix.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/scripts/generate_issue_matrix.dart -------------------------------------------------------------------------------- /scripts/report-custom-lint-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/scripts/report-custom-lint-ci.sh -------------------------------------------------------------------------------- /tools/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/bootstrap.sh -------------------------------------------------------------------------------- /tools/diff_yaml.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/diff_yaml.dart -------------------------------------------------------------------------------- /tools/gen_labeler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/gen_labeler.dart -------------------------------------------------------------------------------- /tools/gen_labels.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/gen_labels.dart -------------------------------------------------------------------------------- /tools/model/melos_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/model/melos_package.dart -------------------------------------------------------------------------------- /tools/model/package_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/model/package_info.dart -------------------------------------------------------------------------------- /tools/rename-application-id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/rename-application-id.sh -------------------------------------------------------------------------------- /tools/templates/issue_improve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/templates/issue_improve.md -------------------------------------------------------------------------------- /tools/update_package.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/update_package.dart -------------------------------------------------------------------------------- /tools/utils/command_runner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/command_runner.dart -------------------------------------------------------------------------------- /tools/utils/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/constants.dart -------------------------------------------------------------------------------- /tools/utils/label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/label.dart -------------------------------------------------------------------------------- /tools/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/logger.dart -------------------------------------------------------------------------------- /tools/utils/melos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/melos.dart -------------------------------------------------------------------------------- /tools/utils/path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yumemi-inc/flutter-mobile-project-template/HEAD/tools/utils/path.dart --------------------------------------------------------------------------------