├── .gitignore ├── .idea └── runConfigurations │ ├── Debug_Development.xml │ ├── Debug_Production.xml │ ├── Debug_Staging.xml │ └── main_dart.xml ├── .metadata ├── Design.sketch ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ └── src │ │ ├── development │ │ ├── google-services.json │ │ └── res │ │ │ ├── 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 │ │ │ └── strings.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── mono0926 │ │ │ │ └── flavor │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── production │ │ ├── google-services.json │ │ └── res │ │ │ ├── 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 │ │ └── staging │ │ ├── google-services.json │ │ └── res │ │ ├── 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 │ │ └── strings.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── icon-development.png │ ├── icon-production.png │ └── icon-staging.png ├── flutter_launcher_icons-development.yaml ├── flutter_launcher_icons-production.yaml ├── flutter_launcher_icons-staging.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug-Development.xcconfig │ ├── Debug.xcconfig │ ├── Development.xcconfig │ ├── Production.xcconfig │ ├── Profile.xcconfig │ ├── Release-Development.xcconfig │ ├── Release-Production.xcconfig │ ├── Release-Staging.xcconfig │ ├── Release.xcconfig │ └── Staging.xcconfig ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Development.xcscheme │ │ ├── Production.xcscheme │ │ ├── Runner.xcscheme │ │ └── Staging.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon-development.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 │ │ ├── AppIcon-production.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 │ │ ├── AppIcon-staging.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 │ │ ├── Contents.json │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BuildMode.swift │ ├── Firebase │ │ ├── GoogleService-Info-Development.plist │ │ ├── GoogleService-Info-Production.plist │ │ └── GoogleService-Info-Staging.plist │ ├── Flavor.swift │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements └── replace_google_service_info.sh ├── lib ├── app.dart ├── build_mode.dart ├── fab.dart ├── flavor.dart ├── main.dart └── util │ └── logger.dart ├── pubspec.lock ├── pubspec.yaml ├── res └── values │ └── strings_en.arb └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/runConfigurations/Debug_Development.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.idea/runConfigurations/Debug_Development.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Debug_Production.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.idea/runConfigurations/Debug_Production.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Debug_Staging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.idea/runConfigurations/Debug_Staging.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/main_dart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.idea/runConfigurations/main_dart.xml -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/.metadata -------------------------------------------------------------------------------- /Design.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/Design.sketch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/development/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/google-services.json -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/development/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/development/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/mono0926/flavor/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/kotlin/com/mono0926/flavor/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/production/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/google-services.json -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/production/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/google-services.json -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/staging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/app/src/staging/res/values/strings.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/icon-development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/assets/images/icon-development.png -------------------------------------------------------------------------------- /assets/images/icon-production.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/assets/images/icon-production.png -------------------------------------------------------------------------------- /assets/images/icon-staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/assets/images/icon-staging.png -------------------------------------------------------------------------------- /flutter_launcher_icons-development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/flutter_launcher_icons-development.yaml -------------------------------------------------------------------------------- /flutter_launcher_icons-production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/flutter_launcher_icons-production.yaml -------------------------------------------------------------------------------- /flutter_launcher_icons-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/flutter_launcher_icons-staging.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug-Development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Debug-Development.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Development.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Production.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Production.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Profile.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Profile.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release-Development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Release-Development.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release-Production.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Release-Production.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release-Staging.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Release-Staging.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Staging.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Flutter/Staging.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Development.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Production.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-development.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-production.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/AppIcon-staging.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/BuildMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/BuildMode.swift -------------------------------------------------------------------------------- /ios/Runner/Firebase/GoogleService-Info-Development.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Firebase/GoogleService-Info-Development.plist -------------------------------------------------------------------------------- /ios/Runner/Firebase/GoogleService-Info-Production.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Firebase/GoogleService-Info-Production.plist -------------------------------------------------------------------------------- /ios/Runner/Firebase/GoogleService-Info-Staging.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Firebase/GoogleService-Info-Staging.plist -------------------------------------------------------------------------------- /ios/Runner/Flavor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Flavor.swift -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/replace_google_service_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/ios/replace_google_service_info.sh -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/build_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/build_mode.dart -------------------------------------------------------------------------------- /lib/fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/fab.dart -------------------------------------------------------------------------------- /lib/flavor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/flavor.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/util/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/lib/util/logger.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /res/values/strings_en.arb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono0926/flutter-flavor-example/HEAD/test/widget_test.dart --------------------------------------------------------------------------------