diff --git a/README.md b/README.md
index 928aff0a4..40ec2f33c 100644
--- a/README.md
+++ b/README.md
@@ -185,12 +185,14 @@ And you have **full customization control** over them!
class YourCustomLog extends TalkerLog {
YourCustomLog(String message) : super(message);
+ /// Your custom log title
@override
String get title => 'Custom';
@override
String? get key => 'custom_log_key';
+ /// Your custom log color
@override
AnsiPen get pen => AnsiPen()..xterm(121);
}
@@ -868,6 +870,20 @@ final crashlyticsTalkerObserver = CrashlyticsTalkerObserver();
final talker = Talker(observer: crashlyticsTalkerObserver);
```
+## Custom Settings
+
+You can create your own custom settings by creating a Custom TalkerSettingsBottomSheet by
+subclassing the TalkerSettingsBottomSheetBase, and adding your own TalkerSettingsCard objects
+to the Build() function.
+
+The shop_with_custom_settings example creates a CustomSettings class to hold setting values
+(all boolean values for now). The TalkerCustomSettingsBottomSheet class implements a custom bottom
+sheet, the custom settings bottom sheet state, and a creator function to be passed into the
+TalkerScreen() creation function.
+
+This example has two custom flags - one that is enabled/disabled by the "Enable" settings flag,
+and the other a global custom flag not affected by the "Enable" settings flag.
+
## Features list
✅ Logging
diff --git a/examples/shop_app_example/.firebaserc b/examples/shop_app/.firebaserc
similarity index 100%
rename from examples/shop_app_example/.firebaserc
rename to examples/shop_app/.firebaserc
diff --git a/examples/shop_app_example/.gitignore b/examples/shop_app/.gitignore
similarity index 100%
rename from examples/shop_app_example/.gitignore
rename to examples/shop_app/.gitignore
diff --git a/examples/shop_app_example/.metadata b/examples/shop_app/.metadata
similarity index 100%
rename from examples/shop_app_example/.metadata
rename to examples/shop_app/.metadata
diff --git a/examples/shop_app_example/README.md b/examples/shop_app/README.md
similarity index 100%
rename from examples/shop_app_example/README.md
rename to examples/shop_app/README.md
diff --git a/examples/shop_app_example/analysis_options.yaml b/examples/shop_app/analysis_options.yaml
similarity index 100%
rename from examples/shop_app_example/analysis_options.yaml
rename to examples/shop_app/analysis_options.yaml
diff --git a/examples/shop_app_example/android/.gitignore b/examples/shop_app/android/.gitignore
similarity index 100%
rename from examples/shop_app_example/android/.gitignore
rename to examples/shop_app/android/.gitignore
diff --git a/examples/shop_app_example/android/app/build.gradle b/examples/shop_app/android/app/build.gradle
similarity index 100%
rename from examples/shop_app_example/android/app/build.gradle
rename to examples/shop_app/android/app/build.gradle
diff --git a/examples/shop_app_example/android/app/src/debug/AndroidManifest.xml b/examples/shop_app/android/app/src/debug/AndroidManifest.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/debug/AndroidManifest.xml
rename to examples/shop_app/android/app/src/debug/AndroidManifest.xml
diff --git a/examples/shop_app_example/android/app/src/main/AndroidManifest.xml b/examples/shop_app/android/app/src/main/AndroidManifest.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/AndroidManifest.xml
rename to examples/shop_app/android/app/src/main/AndroidManifest.xml
diff --git a/examples/shop_app_example/android/app/src/main/kotlin/com/example/shop_app_example/MainActivity.kt b/examples/shop_app/android/app/src/main/kotlin/com/example/shop_app_example/MainActivity.kt
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/kotlin/com/example/shop_app_example/MainActivity.kt
rename to examples/shop_app/android/app/src/main/kotlin/com/example/shop_app_example/MainActivity.kt
diff --git a/examples/shop_app_example/android/app/src/main/res/drawable-v21/launch_background.xml b/examples/shop_app/android/app/src/main/res/drawable-v21/launch_background.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/drawable-v21/launch_background.xml
rename to examples/shop_app/android/app/src/main/res/drawable-v21/launch_background.xml
diff --git a/examples/shop_app_example/android/app/src/main/res/drawable/launch_background.xml b/examples/shop_app/android/app/src/main/res/drawable/launch_background.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/drawable/launch_background.xml
rename to examples/shop_app/android/app/src/main/res/drawable/launch_background.xml
diff --git a/examples/shop_app_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/shop_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
rename to examples/shop_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
diff --git a/examples/shop_app_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/shop_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
rename to examples/shop_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
diff --git a/examples/shop_app_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/shop_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
rename to examples/shop_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
diff --git a/examples/shop_app_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/shop_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
rename to examples/shop_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/examples/shop_app_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/shop_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
rename to examples/shop_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
diff --git a/examples/shop_app_example/android/app/src/main/res/values-night/styles.xml b/examples/shop_app/android/app/src/main/res/values-night/styles.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/values-night/styles.xml
rename to examples/shop_app/android/app/src/main/res/values-night/styles.xml
diff --git a/examples/shop_app_example/android/app/src/main/res/values/styles.xml b/examples/shop_app/android/app/src/main/res/values/styles.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/main/res/values/styles.xml
rename to examples/shop_app/android/app/src/main/res/values/styles.xml
diff --git a/examples/shop_app_example/android/app/src/profile/AndroidManifest.xml b/examples/shop_app/android/app/src/profile/AndroidManifest.xml
similarity index 100%
rename from examples/shop_app_example/android/app/src/profile/AndroidManifest.xml
rename to examples/shop_app/android/app/src/profile/AndroidManifest.xml
diff --git a/examples/shop_app_example/android/build.gradle b/examples/shop_app/android/build.gradle
similarity index 100%
rename from examples/shop_app_example/android/build.gradle
rename to examples/shop_app/android/build.gradle
diff --git a/examples/shop_app_example/android/gradle.properties b/examples/shop_app/android/gradle.properties
similarity index 100%
rename from examples/shop_app_example/android/gradle.properties
rename to examples/shop_app/android/gradle.properties
diff --git a/examples/shop_app_example/android/gradle/wrapper/gradle-wrapper.properties b/examples/shop_app/android/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from examples/shop_app_example/android/gradle/wrapper/gradle-wrapper.properties
rename to examples/shop_app/android/gradle/wrapper/gradle-wrapper.properties
diff --git a/examples/shop_app_example/android/settings.gradle b/examples/shop_app/android/settings.gradle
similarity index 100%
rename from examples/shop_app_example/android/settings.gradle
rename to examples/shop_app/android/settings.gradle
diff --git a/examples/shop_app_example/assets/air_max_plus.png b/examples/shop_app/assets/air_max_plus.png
similarity index 100%
rename from examples/shop_app_example/assets/air_max_plus.png
rename to examples/shop_app/assets/air_max_plus.png
diff --git a/examples/shop_app_example/assets/air_max_plus_white.png b/examples/shop_app/assets/air_max_plus_white.png
similarity index 100%
rename from examples/shop_app_example/assets/air_max_plus_white.png
rename to examples/shop_app/assets/air_max_plus_white.png
diff --git a/examples/shop_app_example/assets/black.png b/examples/shop_app/assets/black.png
similarity index 100%
rename from examples/shop_app_example/assets/black.png
rename to examples/shop_app/assets/black.png
diff --git a/examples/shop_app_example/assets/blue_shoe.png b/examples/shop_app/assets/blue_shoe.png
similarity index 100%
rename from examples/shop_app_example/assets/blue_shoe.png
rename to examples/shop_app/assets/blue_shoe.png
diff --git a/examples/shop_app_example/assets/flutter.png b/examples/shop_app/assets/flutter.png
similarity index 100%
rename from examples/shop_app_example/assets/flutter.png
rename to examples/shop_app/assets/flutter.png
diff --git a/examples/shop_app_example/assets/github.png b/examples/shop_app/assets/github.png
similarity index 100%
rename from examples/shop_app_example/assets/github.png
rename to examples/shop_app/assets/github.png
diff --git a/examples/shop_app_example/assets/iphone_mockup.png b/examples/shop_app/assets/iphone_mockup.png
similarity index 100%
rename from examples/shop_app_example/assets/iphone_mockup.png
rename to examples/shop_app/assets/iphone_mockup.png
diff --git a/examples/shop_app_example/assets/red_shoe.png b/examples/shop_app/assets/red_shoe.png
similarity index 100%
rename from examples/shop_app_example/assets/red_shoe.png
rename to examples/shop_app/assets/red_shoe.png
diff --git a/examples/shop_app_example/devtools_options.yaml b/examples/shop_app/devtools_options.yaml
similarity index 100%
rename from examples/shop_app_example/devtools_options.yaml
rename to examples/shop_app/devtools_options.yaml
diff --git a/examples/shop_app_example/firebase.json b/examples/shop_app/firebase.json
similarity index 100%
rename from examples/shop_app_example/firebase.json
rename to examples/shop_app/firebase.json
diff --git a/examples/shop_app_example/ios/.gitignore b/examples/shop_app/ios/.gitignore
similarity index 100%
rename from examples/shop_app_example/ios/.gitignore
rename to examples/shop_app/ios/.gitignore
diff --git a/examples/shop_app_example/ios/Flutter/AppFrameworkInfo.plist b/examples/shop_app/ios/Flutter/AppFrameworkInfo.plist
similarity index 100%
rename from examples/shop_app_example/ios/Flutter/AppFrameworkInfo.plist
rename to examples/shop_app/ios/Flutter/AppFrameworkInfo.plist
diff --git a/examples/shop_app_example/ios/Flutter/Debug.xcconfig b/examples/shop_app/ios/Flutter/Debug.xcconfig
similarity index 100%
rename from examples/shop_app_example/ios/Flutter/Debug.xcconfig
rename to examples/shop_app/ios/Flutter/Debug.xcconfig
diff --git a/examples/shop_app_example/ios/Flutter/Release.xcconfig b/examples/shop_app/ios/Flutter/Release.xcconfig
similarity index 100%
rename from examples/shop_app_example/ios/Flutter/Release.xcconfig
rename to examples/shop_app/ios/Flutter/Release.xcconfig
diff --git a/examples/shop_app_example/ios/Podfile b/examples/shop_app/ios/Podfile
similarity index 100%
rename from examples/shop_app_example/ios/Podfile
rename to examples/shop_app/ios/Podfile
diff --git a/examples/shop_app_example/ios/Podfile.lock b/examples/shop_app/ios/Podfile.lock
similarity index 100%
rename from examples/shop_app_example/ios/Podfile.lock
rename to examples/shop_app/ios/Podfile.lock
diff --git a/examples/shop_app_example/ios/Runner.xcodeproj/project.pbxproj b/examples/shop_app/ios/Runner.xcodeproj/project.pbxproj
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcodeproj/project.pbxproj
rename to examples/shop_app/ios/Runner.xcodeproj/project.pbxproj
diff --git a/examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
rename to examples/shop_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
diff --git a/examples/shop_app_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/examples/shop_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
rename to examples/shop_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
diff --git a/examples/shop_app_example/ios/Runner.xcworkspace/contents.xcworkspacedata b/examples/shop_app/ios/Runner.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcworkspace/contents.xcworkspacedata
rename to examples/shop_app/ios/Runner.xcworkspace/contents.xcworkspacedata
diff --git a/examples/shop_app_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to examples/shop_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/examples/shop_app_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/shop_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
similarity index 100%
rename from examples/shop_app_example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
rename to examples/shop_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
diff --git a/examples/shop_app_example/ios/Runner/AppDelegate.swift b/examples/shop_app/ios/Runner/AppDelegate.swift
similarity index 100%
rename from examples/shop_app_example/ios/Runner/AppDelegate.swift
rename to examples/shop_app/ios/Runner/AppDelegate.swift
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
rename to examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
rename to examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
diff --git a/examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
rename to examples/shop_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
diff --git a/examples/shop_app_example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/examples/shop_app/ios/Runner/Base.lproj/LaunchScreen.storyboard
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Base.lproj/LaunchScreen.storyboard
rename to examples/shop_app/ios/Runner/Base.lproj/LaunchScreen.storyboard
diff --git a/examples/shop_app_example/ios/Runner/Base.lproj/Main.storyboard b/examples/shop_app/ios/Runner/Base.lproj/Main.storyboard
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Base.lproj/Main.storyboard
rename to examples/shop_app/ios/Runner/Base.lproj/Main.storyboard
diff --git a/examples/shop_app_example/ios/Runner/Info.plist b/examples/shop_app/ios/Runner/Info.plist
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Info.plist
rename to examples/shop_app/ios/Runner/Info.plist
diff --git a/examples/shop_app_example/ios/Runner/Runner-Bridging-Header.h b/examples/shop_app/ios/Runner/Runner-Bridging-Header.h
similarity index 100%
rename from examples/shop_app_example/ios/Runner/Runner-Bridging-Header.h
rename to examples/shop_app/ios/Runner/Runner-Bridging-Header.h
diff --git a/examples/shop_app_example/lib/features/product/bloc/bloc.dart b/examples/shop_app/lib/features/product/bloc/bloc.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/bloc/bloc.dart
rename to examples/shop_app/lib/features/product/bloc/bloc.dart
diff --git a/examples/shop_app_example/lib/features/product/bloc/product/product_bloc.dart b/examples/shop_app/lib/features/product/bloc/product/product_bloc.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/bloc/product/product_bloc.dart
rename to examples/shop_app/lib/features/product/bloc/product/product_bloc.dart
diff --git a/examples/shop_app_example/lib/features/product/bloc/product/product_event.dart b/examples/shop_app/lib/features/product/bloc/product/product_event.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/bloc/product/product_event.dart
rename to examples/shop_app/lib/features/product/bloc/product/product_event.dart
diff --git a/examples/shop_app_example/lib/features/product/bloc/product/product_state.dart b/examples/shop_app/lib/features/product/bloc/product/product_state.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/bloc/product/product_state.dart
rename to examples/shop_app/lib/features/product/bloc/product/product_state.dart
diff --git a/examples/shop_app_example/lib/features/product/product.dart b/examples/shop_app/lib/features/product/product.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/product.dart
rename to examples/shop_app/lib/features/product/product.dart
diff --git a/examples/shop_app_example/lib/features/product/view/product_screen.dart b/examples/shop_app/lib/features/product/view/product_screen.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/view/product_screen.dart
rename to examples/shop_app/lib/features/product/view/product_screen.dart
diff --git a/examples/shop_app_example/lib/features/product/view/view.dart b/examples/shop_app/lib/features/product/view/view.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/product/view/view.dart
rename to examples/shop_app/lib/features/product/view/view.dart
diff --git a/examples/shop_app_example/lib/features/products/bloc/bloc.dart b/examples/shop_app/lib/features/products/bloc/bloc.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/bloc/bloc.dart
rename to examples/shop_app/lib/features/products/bloc/bloc.dart
diff --git a/examples/shop_app_example/lib/features/products/bloc/products/products_bloc.dart b/examples/shop_app/lib/features/products/bloc/products/products_bloc.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/bloc/products/products_bloc.dart
rename to examples/shop_app/lib/features/products/bloc/products/products_bloc.dart
diff --git a/examples/shop_app_example/lib/features/products/bloc/products/products_event.dart b/examples/shop_app/lib/features/products/bloc/products/products_event.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/bloc/products/products_event.dart
rename to examples/shop_app/lib/features/products/bloc/products/products_event.dart
diff --git a/examples/shop_app_example/lib/features/products/bloc/products/products_state.dart b/examples/shop_app/lib/features/products/bloc/products/products_state.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/bloc/products/products_state.dart
rename to examples/shop_app/lib/features/products/bloc/products/products_state.dart
diff --git a/examples/shop_app_example/lib/features/products/products.dart b/examples/shop_app/lib/features/products/products.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/products.dart
rename to examples/shop_app/lib/features/products/products.dart
diff --git a/examples/shop_app_example/lib/features/products/view/products_screen.dart b/examples/shop_app/lib/features/products/view/products_screen.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/view/products_screen.dart
rename to examples/shop_app/lib/features/products/view/products_screen.dart
diff --git a/examples/shop_app_example/lib/features/products/view/view.dart b/examples/shop_app/lib/features/products/view/view.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/view/view.dart
rename to examples/shop_app/lib/features/products/view/view.dart
diff --git a/examples/shop_app_example/lib/features/products/widgets/product_card.dart b/examples/shop_app/lib/features/products/widgets/product_card.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/widgets/product_card.dart
rename to examples/shop_app/lib/features/products/widgets/product_card.dart
diff --git a/examples/shop_app_example/lib/features/products/widgets/widgets.dart b/examples/shop_app/lib/features/products/widgets/widgets.dart
similarity index 100%
rename from examples/shop_app_example/lib/features/products/widgets/widgets.dart
rename to examples/shop_app/lib/features/products/widgets/widgets.dart
diff --git a/examples/shop_app_example/lib/firebase_options.dart b/examples/shop_app/lib/firebase_options.dart
similarity index 100%
rename from examples/shop_app_example/lib/firebase_options.dart
rename to examples/shop_app/lib/firebase_options.dart
diff --git a/examples/shop_app_example/lib/main.dart b/examples/shop_app/lib/main.dart
similarity index 100%
rename from examples/shop_app_example/lib/main.dart
rename to examples/shop_app/lib/main.dart
diff --git a/examples/shop_app_example/lib/repositories/products/abstarct_products_repository.dart b/examples/shop_app/lib/repositories/products/abstarct_products_repository.dart
similarity index 100%
rename from examples/shop_app_example/lib/repositories/products/abstarct_products_repository.dart
rename to examples/shop_app/lib/repositories/products/abstarct_products_repository.dart
diff --git a/examples/shop_app_example/lib/repositories/products/models/models.dart b/examples/shop_app/lib/repositories/products/models/models.dart
similarity index 100%
rename from examples/shop_app_example/lib/repositories/products/models/models.dart
rename to examples/shop_app/lib/repositories/products/models/models.dart
diff --git a/examples/shop_app_example/lib/repositories/products/models/product.dart b/examples/shop_app/lib/repositories/products/models/product.dart
similarity index 100%
rename from examples/shop_app_example/lib/repositories/products/models/product.dart
rename to examples/shop_app/lib/repositories/products/models/product.dart
diff --git a/examples/shop_app_example/lib/repositories/products/products.dart b/examples/shop_app/lib/repositories/products/products.dart
similarity index 100%
rename from examples/shop_app_example/lib/repositories/products/products.dart
rename to examples/shop_app/lib/repositories/products/products.dart
diff --git a/examples/shop_app_example/lib/repositories/products/products_repository.dart b/examples/shop_app/lib/repositories/products/products_repository.dart
similarity index 100%
rename from examples/shop_app_example/lib/repositories/products/products_repository.dart
rename to examples/shop_app/lib/repositories/products/products_repository.dart
diff --git a/examples/shop_app_example/lib/ui/presentation_frame.dart b/examples/shop_app/lib/ui/presentation_frame.dart
similarity index 100%
rename from examples/shop_app_example/lib/ui/presentation_frame.dart
rename to examples/shop_app/lib/ui/presentation_frame.dart
diff --git a/examples/shop_app_example/lib/ui/presentation_widget.dart b/examples/shop_app/lib/ui/presentation_widget.dart
similarity index 100%
rename from examples/shop_app_example/lib/ui/presentation_widget.dart
rename to examples/shop_app/lib/ui/presentation_widget.dart
diff --git a/examples/shop_app_example/lib/ui/router.dart b/examples/shop_app/lib/ui/router.dart
similarity index 100%
rename from examples/shop_app_example/lib/ui/router.dart
rename to examples/shop_app/lib/ui/router.dart
diff --git a/examples/shop_app_example/lib/ui/theme.dart b/examples/shop_app/lib/ui/theme.dart
similarity index 100%
rename from examples/shop_app_example/lib/ui/theme.dart
rename to examples/shop_app/lib/ui/theme.dart
diff --git a/examples/shop_app_example/lib/ui/ui.dart b/examples/shop_app/lib/ui/ui.dart
similarity index 100%
rename from examples/shop_app_example/lib/ui/ui.dart
rename to examples/shop_app/lib/ui/ui.dart
diff --git a/examples/shop_app_example/lib/utils/di.dart b/examples/shop_app/lib/utils/di.dart
similarity index 100%
rename from examples/shop_app_example/lib/utils/di.dart
rename to examples/shop_app/lib/utils/di.dart
diff --git a/examples/shop_app_example/lib/utils/good_log.dart b/examples/shop_app/lib/utils/good_log.dart
similarity index 100%
rename from examples/shop_app_example/lib/utils/good_log.dart
rename to examples/shop_app/lib/utils/good_log.dart
diff --git a/examples/shop_app_example/lib/utils/scroll_behavior.dart b/examples/shop_app/lib/utils/scroll_behavior.dart
similarity index 100%
rename from examples/shop_app_example/lib/utils/scroll_behavior.dart
rename to examples/shop_app/lib/utils/scroll_behavior.dart
diff --git a/examples/shop_app_example/lib/utils/utils.dart b/examples/shop_app/lib/utils/utils.dart
similarity index 100%
rename from examples/shop_app_example/lib/utils/utils.dart
rename to examples/shop_app/lib/utils/utils.dart
diff --git a/examples/shop_app_example/linux/.gitignore b/examples/shop_app/linux/.gitignore
similarity index 100%
rename from examples/shop_app_example/linux/.gitignore
rename to examples/shop_app/linux/.gitignore
diff --git a/examples/shop_app_example/linux/CMakeLists.txt b/examples/shop_app/linux/CMakeLists.txt
similarity index 100%
rename from examples/shop_app_example/linux/CMakeLists.txt
rename to examples/shop_app/linux/CMakeLists.txt
diff --git a/examples/shop_app_example/linux/flutter/CMakeLists.txt b/examples/shop_app/linux/flutter/CMakeLists.txt
similarity index 100%
rename from examples/shop_app_example/linux/flutter/CMakeLists.txt
rename to examples/shop_app/linux/flutter/CMakeLists.txt
diff --git a/examples/shop_app_example/linux/flutter/generated_plugin_registrant.cc b/examples/shop_app/linux/flutter/generated_plugin_registrant.cc
similarity index 100%
rename from examples/shop_app_example/linux/flutter/generated_plugin_registrant.cc
rename to examples/shop_app/linux/flutter/generated_plugin_registrant.cc
diff --git a/examples/shop_app_example/linux/flutter/generated_plugin_registrant.h b/examples/shop_app/linux/flutter/generated_plugin_registrant.h
similarity index 100%
rename from examples/shop_app_example/linux/flutter/generated_plugin_registrant.h
rename to examples/shop_app/linux/flutter/generated_plugin_registrant.h
diff --git a/examples/shop_app_example/linux/flutter/generated_plugins.cmake b/examples/shop_app/linux/flutter/generated_plugins.cmake
similarity index 100%
rename from examples/shop_app_example/linux/flutter/generated_plugins.cmake
rename to examples/shop_app/linux/flutter/generated_plugins.cmake
diff --git a/examples/shop_app_example/linux/main.cc b/examples/shop_app/linux/main.cc
similarity index 100%
rename from examples/shop_app_example/linux/main.cc
rename to examples/shop_app/linux/main.cc
diff --git a/examples/shop_app_example/linux/my_application.cc b/examples/shop_app/linux/my_application.cc
similarity index 100%
rename from examples/shop_app_example/linux/my_application.cc
rename to examples/shop_app/linux/my_application.cc
diff --git a/examples/shop_app_example/linux/my_application.h b/examples/shop_app/linux/my_application.h
similarity index 100%
rename from examples/shop_app_example/linux/my_application.h
rename to examples/shop_app/linux/my_application.h
diff --git a/examples/shop_app_example/macos/.gitignore b/examples/shop_app/macos/.gitignore
similarity index 100%
rename from examples/shop_app_example/macos/.gitignore
rename to examples/shop_app/macos/.gitignore
diff --git a/examples/shop_app_example/macos/Flutter/Flutter-Debug.xcconfig b/examples/shop_app/macos/Flutter/Flutter-Debug.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Flutter/Flutter-Debug.xcconfig
rename to examples/shop_app/macos/Flutter/Flutter-Debug.xcconfig
diff --git a/examples/shop_app_example/macos/Flutter/Flutter-Release.xcconfig b/examples/shop_app/macos/Flutter/Flutter-Release.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Flutter/Flutter-Release.xcconfig
rename to examples/shop_app/macos/Flutter/Flutter-Release.xcconfig
diff --git a/examples/shop_app_example/macos/Flutter/GeneratedPluginRegistrant.swift b/examples/shop_app/macos/Flutter/GeneratedPluginRegistrant.swift
similarity index 100%
rename from examples/shop_app_example/macos/Flutter/GeneratedPluginRegistrant.swift
rename to examples/shop_app/macos/Flutter/GeneratedPluginRegistrant.swift
diff --git a/examples/shop_app_example/macos/Podfile b/examples/shop_app/macos/Podfile
similarity index 100%
rename from examples/shop_app_example/macos/Podfile
rename to examples/shop_app/macos/Podfile
diff --git a/examples/shop_app_example/macos/Podfile.lock b/examples/shop_app/macos/Podfile.lock
similarity index 100%
rename from examples/shop_app_example/macos/Podfile.lock
rename to examples/shop_app/macos/Podfile.lock
diff --git a/examples/shop_app_example/macos/Runner.xcodeproj/project.pbxproj b/examples/shop_app/macos/Runner.xcodeproj/project.pbxproj
similarity index 100%
rename from examples/shop_app_example/macos/Runner.xcodeproj/project.pbxproj
rename to examples/shop_app/macos/Runner.xcodeproj/project.pbxproj
diff --git a/examples/shop_app_example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from examples/shop_app_example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to examples/shop_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/examples/shop_app_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/examples/shop_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
similarity index 100%
rename from examples/shop_app_example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
rename to examples/shop_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
diff --git a/examples/shop_app_example/macos/Runner.xcworkspace/contents.xcworkspacedata b/examples/shop_app/macos/Runner.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from examples/shop_app_example/macos/Runner.xcworkspace/contents.xcworkspacedata
rename to examples/shop_app/macos/Runner.xcworkspace/contents.xcworkspacedata
diff --git a/examples/shop_app_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
similarity index 100%
rename from examples/shop_app_example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
rename to examples/shop_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
diff --git a/examples/shop_app_example/macos/Runner/AppDelegate.swift b/examples/shop_app/macos/Runner/AppDelegate.swift
similarity index 100%
rename from examples/shop_app_example/macos/Runner/AppDelegate.swift
rename to examples/shop_app/macos/Runner/AppDelegate.swift
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png
diff --git a/examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
rename to examples/shop_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png
diff --git a/examples/shop_app_example/macos/Runner/Base.lproj/MainMenu.xib b/examples/shop_app/macos/Runner/Base.lproj/MainMenu.xib
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Base.lproj/MainMenu.xib
rename to examples/shop_app/macos/Runner/Base.lproj/MainMenu.xib
diff --git a/examples/shop_app_example/macos/Runner/Configs/AppInfo.xcconfig b/examples/shop_app/macos/Runner/Configs/AppInfo.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Configs/AppInfo.xcconfig
rename to examples/shop_app/macos/Runner/Configs/AppInfo.xcconfig
diff --git a/examples/shop_app_example/macos/Runner/Configs/Debug.xcconfig b/examples/shop_app/macos/Runner/Configs/Debug.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Configs/Debug.xcconfig
rename to examples/shop_app/macos/Runner/Configs/Debug.xcconfig
diff --git a/examples/shop_app_example/macos/Runner/Configs/Release.xcconfig b/examples/shop_app/macos/Runner/Configs/Release.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Configs/Release.xcconfig
rename to examples/shop_app/macos/Runner/Configs/Release.xcconfig
diff --git a/examples/shop_app_example/macos/Runner/Configs/Warnings.xcconfig b/examples/shop_app/macos/Runner/Configs/Warnings.xcconfig
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Configs/Warnings.xcconfig
rename to examples/shop_app/macos/Runner/Configs/Warnings.xcconfig
diff --git a/examples/shop_app_example/macos/Runner/DebugProfile.entitlements b/examples/shop_app/macos/Runner/DebugProfile.entitlements
similarity index 100%
rename from examples/shop_app_example/macos/Runner/DebugProfile.entitlements
rename to examples/shop_app/macos/Runner/DebugProfile.entitlements
diff --git a/examples/shop_app_example/macos/Runner/Info.plist b/examples/shop_app/macos/Runner/Info.plist
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Info.plist
rename to examples/shop_app/macos/Runner/Info.plist
diff --git a/examples/shop_app_example/macos/Runner/MainFlutterWindow.swift b/examples/shop_app/macos/Runner/MainFlutterWindow.swift
similarity index 100%
rename from examples/shop_app_example/macos/Runner/MainFlutterWindow.swift
rename to examples/shop_app/macos/Runner/MainFlutterWindow.swift
diff --git a/examples/shop_app_example/macos/Runner/Release.entitlements b/examples/shop_app/macos/Runner/Release.entitlements
similarity index 100%
rename from examples/shop_app_example/macos/Runner/Release.entitlements
rename to examples/shop_app/macos/Runner/Release.entitlements
diff --git a/examples/shop_app_example/pubspec.yaml b/examples/shop_app/pubspec.yaml
similarity index 100%
rename from examples/shop_app_example/pubspec.yaml
rename to examples/shop_app/pubspec.yaml
diff --git a/examples/shop_app_example/pubspec_overrides.yaml b/examples/shop_app/pubspec_overrides.yaml
similarity index 100%
rename from examples/shop_app_example/pubspec_overrides.yaml
rename to examples/shop_app/pubspec_overrides.yaml
diff --git a/examples/shop_app_example/web/favicon.png b/examples/shop_app/web/favicon.png
similarity index 100%
rename from examples/shop_app_example/web/favicon.png
rename to examples/shop_app/web/favicon.png
diff --git a/examples/shop_app_example/web/icons/Icon-192.png b/examples/shop_app/web/icons/Icon-192.png
similarity index 100%
rename from examples/shop_app_example/web/icons/Icon-192.png
rename to examples/shop_app/web/icons/Icon-192.png
diff --git a/examples/shop_app_example/web/icons/Icon-512.png b/examples/shop_app/web/icons/Icon-512.png
similarity index 100%
rename from examples/shop_app_example/web/icons/Icon-512.png
rename to examples/shop_app/web/icons/Icon-512.png
diff --git a/examples/shop_app_example/web/icons/Icon-maskable-192.png b/examples/shop_app/web/icons/Icon-maskable-192.png
similarity index 100%
rename from examples/shop_app_example/web/icons/Icon-maskable-192.png
rename to examples/shop_app/web/icons/Icon-maskable-192.png
diff --git a/examples/shop_app_example/web/icons/Icon-maskable-512.png b/examples/shop_app/web/icons/Icon-maskable-512.png
similarity index 100%
rename from examples/shop_app_example/web/icons/Icon-maskable-512.png
rename to examples/shop_app/web/icons/Icon-maskable-512.png
diff --git a/examples/shop_app_example/web/index.html b/examples/shop_app/web/index.html
similarity index 100%
rename from examples/shop_app_example/web/index.html
rename to examples/shop_app/web/index.html
diff --git a/examples/shop_app_example/web/manifest.json b/examples/shop_app/web/manifest.json
similarity index 100%
rename from examples/shop_app_example/web/manifest.json
rename to examples/shop_app/web/manifest.json
diff --git a/examples/shop_app_example/windows/.gitignore b/examples/shop_app/windows/.gitignore
similarity index 100%
rename from examples/shop_app_example/windows/.gitignore
rename to examples/shop_app/windows/.gitignore
diff --git a/examples/shop_app_example/windows/CMakeLists.txt b/examples/shop_app/windows/CMakeLists.txt
similarity index 100%
rename from examples/shop_app_example/windows/CMakeLists.txt
rename to examples/shop_app/windows/CMakeLists.txt
diff --git a/examples/shop_app_example/windows/flutter/CMakeLists.txt b/examples/shop_app/windows/flutter/CMakeLists.txt
similarity index 100%
rename from examples/shop_app_example/windows/flutter/CMakeLists.txt
rename to examples/shop_app/windows/flutter/CMakeLists.txt
diff --git a/examples/shop_app_example/windows/flutter/generated_plugin_registrant.cc b/examples/shop_app/windows/flutter/generated_plugin_registrant.cc
similarity index 100%
rename from examples/shop_app_example/windows/flutter/generated_plugin_registrant.cc
rename to examples/shop_app/windows/flutter/generated_plugin_registrant.cc
diff --git a/examples/shop_app_example/windows/flutter/generated_plugin_registrant.h b/examples/shop_app/windows/flutter/generated_plugin_registrant.h
similarity index 100%
rename from examples/shop_app_example/windows/flutter/generated_plugin_registrant.h
rename to examples/shop_app/windows/flutter/generated_plugin_registrant.h
diff --git a/examples/shop_app_example/windows/flutter/generated_plugins.cmake b/examples/shop_app/windows/flutter/generated_plugins.cmake
similarity index 100%
rename from examples/shop_app_example/windows/flutter/generated_plugins.cmake
rename to examples/shop_app/windows/flutter/generated_plugins.cmake
diff --git a/examples/shop_app_example/windows/runner/CMakeLists.txt b/examples/shop_app/windows/runner/CMakeLists.txt
similarity index 100%
rename from examples/shop_app_example/windows/runner/CMakeLists.txt
rename to examples/shop_app/windows/runner/CMakeLists.txt
diff --git a/examples/shop_app_example/windows/runner/Runner.rc b/examples/shop_app/windows/runner/Runner.rc
similarity index 100%
rename from examples/shop_app_example/windows/runner/Runner.rc
rename to examples/shop_app/windows/runner/Runner.rc
diff --git a/examples/shop_app_example/windows/runner/flutter_window.cpp b/examples/shop_app/windows/runner/flutter_window.cpp
similarity index 100%
rename from examples/shop_app_example/windows/runner/flutter_window.cpp
rename to examples/shop_app/windows/runner/flutter_window.cpp
diff --git a/examples/shop_app_example/windows/runner/flutter_window.h b/examples/shop_app/windows/runner/flutter_window.h
similarity index 100%
rename from examples/shop_app_example/windows/runner/flutter_window.h
rename to examples/shop_app/windows/runner/flutter_window.h
diff --git a/examples/shop_app_example/windows/runner/main.cpp b/examples/shop_app/windows/runner/main.cpp
similarity index 100%
rename from examples/shop_app_example/windows/runner/main.cpp
rename to examples/shop_app/windows/runner/main.cpp
diff --git a/examples/shop_app_example/windows/runner/resource.h b/examples/shop_app/windows/runner/resource.h
similarity index 100%
rename from examples/shop_app_example/windows/runner/resource.h
rename to examples/shop_app/windows/runner/resource.h
diff --git a/examples/shop_app_example/windows/runner/resources/app_icon.ico b/examples/shop_app/windows/runner/resources/app_icon.ico
similarity index 100%
rename from examples/shop_app_example/windows/runner/resources/app_icon.ico
rename to examples/shop_app/windows/runner/resources/app_icon.ico
diff --git a/examples/shop_app_example/windows/runner/runner.exe.manifest b/examples/shop_app/windows/runner/runner.exe.manifest
similarity index 100%
rename from examples/shop_app_example/windows/runner/runner.exe.manifest
rename to examples/shop_app/windows/runner/runner.exe.manifest
diff --git a/examples/shop_app_example/windows/runner/utils.cpp b/examples/shop_app/windows/runner/utils.cpp
similarity index 100%
rename from examples/shop_app_example/windows/runner/utils.cpp
rename to examples/shop_app/windows/runner/utils.cpp
diff --git a/examples/shop_app_example/windows/runner/utils.h b/examples/shop_app/windows/runner/utils.h
similarity index 100%
rename from examples/shop_app_example/windows/runner/utils.h
rename to examples/shop_app/windows/runner/utils.h
diff --git a/examples/shop_app_example/windows/runner/win32_window.cpp b/examples/shop_app/windows/runner/win32_window.cpp
similarity index 100%
rename from examples/shop_app_example/windows/runner/win32_window.cpp
rename to examples/shop_app/windows/runner/win32_window.cpp
diff --git a/examples/shop_app_example/windows/runner/win32_window.h b/examples/shop_app/windows/runner/win32_window.h
similarity index 100%
rename from examples/shop_app_example/windows/runner/win32_window.h
rename to examples/shop_app/windows/runner/win32_window.h
diff --git a/examples/shop_with_custom_settings/.firebaserc b/examples/shop_with_custom_settings/.firebaserc
new file mode 100644
index 000000000..7b21a1c51
--- /dev/null
+++ b/examples/shop_with_custom_settings/.firebaserc
@@ -0,0 +1,5 @@
+{
+ "projects": {
+ "default": "talker-7ac5e"
+ }
+}
diff --git a/examples/shop_with_custom_settings/.gitignore b/examples/shop_with_custom_settings/.gitignore
new file mode 100644
index 000000000..1eab1a228
--- /dev/null
+++ b/examples/shop_with_custom_settings/.gitignore
@@ -0,0 +1,46 @@
+# Miscellaneous
+*.class
+*.log
+*.pyc
+*.swp
+.DS_Store
+.atom/
+.buildlog/
+.history
+.svn/
+migrate_working_dir/
+
+# IntelliJ related
+*.iml
+*.ipr
+*.iws
+.idea/
+
+# The .vscode folder contains launch configuration and tasks you configure in
+# VS Code which you may wish to be included in version control, so this line
+# is commented out by default.
+#.vscode/
+
+# Flutter/Dart/Pub related
+**/doc/api/
+**/ios/Flutter/.last_build_id
+.dart_tool/
+.flutter-plugins
+.flutter-plugins-dependencies
+.packages
+.pub-cache/
+.pub/
+/build/
+
+# Web related
+
+# Symbolication related
+app.*.symbols
+
+# Obfuscation related
+app.*.map.json
+
+# Android Studio will place build artifacts here
+/android/app/debug
+/android/app/profile
+/android/app/release
diff --git a/examples/shop_with_custom_settings/.metadata b/examples/shop_with_custom_settings/.metadata
new file mode 100644
index 000000000..9e70ade37
--- /dev/null
+++ b/examples/shop_with_custom_settings/.metadata
@@ -0,0 +1,45 @@
+# This file tracks properties of this Flutter project.
+# Used by Flutter tool to assess capabilities and perform upgrades etc.
+#
+# This file should be version controlled.
+
+version:
+ revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ channel: stable
+
+project_type: app
+
+# Tracks metadata for the flutter migrate command
+migration:
+ platforms:
+ - platform: root
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: android
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: ios
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: linux
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: macos
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: web
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ - platform: windows
+ create_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+ base_revision: 52b3dc25f6471c27b2144594abb11c741cb88f57
+
+ # User provided section
+
+ # List of Local paths (relative to this file) that should be
+ # ignored by the migrate tool.
+ #
+ # Files that are not part of the templates will be ignored by default.
+ unmanaged_files:
+ - 'lib/main.dart'
+ - 'ios/Runner.xcodeproj/project.pbxproj'
diff --git a/examples/shop_with_custom_settings/README.md b/examples/shop_with_custom_settings/README.md
new file mode 100644
index 000000000..63efe187b
--- /dev/null
+++ b/examples/shop_with_custom_settings/README.md
@@ -0,0 +1,16 @@
+# talker_shop_app_example
+
+A new Flutter project.
+
+## Getting Started
+
+This project is a starting point for a Flutter application.
+
+A few resources to get you started if this is your first Flutter project:
+
+- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
+- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
+
+For help getting started with Flutter development, view the
+[online documentation](https://docs.flutter.dev/), which offers tutorials,
+samples, guidance on mobile development, and a full API reference.
diff --git a/examples/shop_with_custom_settings/analysis_options.yaml b/examples/shop_with_custom_settings/analysis_options.yaml
new file mode 100644
index 000000000..61b6c4de1
--- /dev/null
+++ b/examples/shop_with_custom_settings/analysis_options.yaml
@@ -0,0 +1,29 @@
+# This file configures the analyzer, which statically analyzes Dart code to
+# check for errors, warnings, and lints.
+#
+# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
+# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
+# invoked from the command line by running `flutter analyze`.
+
+# The following line activates a set of recommended lints for Flutter apps,
+# packages, and plugins designed to encourage good coding practices.
+include: package:flutter_lints/flutter.yaml
+
+linter:
+ # The lint rules applied to this project can be customized in the
+ # section below to disable rules from the `package:flutter_lints/flutter.yaml`
+ # included above or to enable additional rules. A list of all available lints
+ # and their documentation is published at
+ # https://dart-lang.github.io/linter/lints/index.html.
+ #
+ # Instead of disabling a lint rule for the entire project in the
+ # section below, it can also be suppressed for a single line of code
+ # or a specific dart file by using the `// ignore: name_of_lint` and
+ # `// ignore_for_file: name_of_lint` syntax on the line or in the file
+ # producing the lint.
+ rules:
+ # avoid_print: false # Uncomment to disable the `avoid_print` rule
+ # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
+
+# Additional information about this file can be found at
+# https://dart.dev/guides/language/analysis-options
diff --git a/examples/shop_with_custom_settings/android/.gitignore b/examples/shop_with_custom_settings/android/.gitignore
new file mode 100644
index 000000000..6f568019d
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/.gitignore
@@ -0,0 +1,13 @@
+gradle-wrapper.jar
+/.gradle
+/captures/
+/gradlew
+/gradlew.bat
+/local.properties
+GeneratedPluginRegistrant.java
+
+# Remember to never publicly share your keystore.
+# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
+key.properties
+**/*.keystore
+**/*.jks
diff --git a/examples/shop_with_custom_settings/android/app/build.gradle b/examples/shop_with_custom_settings/android/app/build.gradle
new file mode 100644
index 000000000..167d0ee32
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/build.gradle
@@ -0,0 +1,67 @@
+plugins {
+ id "com.android.application"
+ id "kotlin-android"
+ id "dev.flutter.flutter-gradle-plugin"
+}
+
+def localProperties = new Properties()
+def localPropertiesFile = rootProject.file('local.properties')
+if (localPropertiesFile.exists()) {
+ localPropertiesFile.withReader('UTF-8') { reader ->
+ localProperties.load(reader)
+ }
+}
+
+def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
+if (flutterVersionCode == null) {
+ flutterVersionCode = '1'
+}
+
+def flutterVersionName = localProperties.getProperty('flutter.versionName')
+if (flutterVersionName == null) {
+ flutterVersionName = '1.0'
+}
+
+android {
+ compileSdkVersion 34
+ ndkVersion flutter.ndkVersion
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+
+ sourceSets {
+ main.java.srcDirs += 'src/main/kotlin'
+ }
+
+ defaultConfig {
+ // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
+ applicationId "com.example.shop_app_with_custom_settings_example"
+ // You can update the following values to match your application needs.
+ // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
+ minSdkVersion flutter.minSdkVersion
+ targetSdkVersion flutter.targetSdkVersion
+ versionCode flutterVersionCode.toInteger()
+ versionName flutterVersionName
+ }
+
+ buildTypes {
+ release {
+ // TODO: Add your own signing config for the release build.
+ // Signing with the debug keys for now, so `flutter run --release` works.
+ signingConfig signingConfigs.debug
+ }
+ }
+}
+
+flutter {
+ source '../..'
+}
+
+dependencies {
+}
diff --git a/examples/shop_with_custom_settings/android/app/src/debug/AndroidManifest.xml b/examples/shop_with_custom_settings/android/app/src/debug/AndroidManifest.xml
new file mode 100644
index 000000000..87bc6c2a9
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/debug/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/main/AndroidManifest.xml b/examples/shop_with_custom_settings/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..8f8bfef67
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/main/kotlin/com/example/shop_app_with_custom_settings_example/MainActivity.kt b/examples/shop_with_custom_settings/android/app/src/main/kotlin/com/example/shop_app_with_custom_settings_example/MainActivity.kt
new file mode 100644
index 000000000..4551069ec
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/kotlin/com/example/shop_app_with_custom_settings_example/MainActivity.kt
@@ -0,0 +1,6 @@
+package com.example.shop_app_with_custom_settings_example
+
+import io.flutter.embedding.android.FlutterActivity
+
+class MainActivity: FlutterActivity() {
+}
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/drawable-v21/launch_background.xml b/examples/shop_with_custom_settings/android/app/src/main/res/drawable-v21/launch_background.xml
new file mode 100644
index 000000000..f74085f3f
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/res/drawable-v21/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/drawable/launch_background.xml b/examples/shop_with_custom_settings/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 000000000..304732f88
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 000000000..db77bb4b7
Binary files /dev/null and b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 000000000..17987b79b
Binary files /dev/null and b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 000000000..09d439148
Binary files /dev/null and b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 000000000..d5f1c8d34
Binary files /dev/null and b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 000000000..4d6372eeb
Binary files /dev/null and b/examples/shop_with_custom_settings/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/values-night/styles.xml b/examples/shop_with_custom_settings/android/app/src/main/res/values-night/styles.xml
new file mode 100644
index 000000000..06952be74
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/res/values-night/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/main/res/values/styles.xml b/examples/shop_with_custom_settings/android/app/src/main/res/values/styles.xml
new file mode 100644
index 000000000..cb1ef8805
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/app/src/profile/AndroidManifest.xml b/examples/shop_with_custom_settings/android/app/src/profile/AndroidManifest.xml
new file mode 100644
index 000000000..87bc6c2a9
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/app/src/profile/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
diff --git a/examples/shop_with_custom_settings/android/build.gradle b/examples/shop_with_custom_settings/android/build.gradle
new file mode 100644
index 000000000..bc157bd1a
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/build.gradle
@@ -0,0 +1,18 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+rootProject.buildDir = '../build'
+subprojects {
+ project.buildDir = "${rootProject.buildDir}/${project.name}"
+}
+subprojects {
+ project.evaluationDependsOn(':app')
+}
+
+tasks.register("clean", Delete) {
+ delete rootProject.buildDir
+}
diff --git a/examples/shop_with_custom_settings/android/gradle.properties b/examples/shop_with_custom_settings/android/gradle.properties
new file mode 100644
index 000000000..94adc3a3f
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/gradle.properties
@@ -0,0 +1,3 @@
+org.gradle.jvmargs=-Xmx1536M
+android.useAndroidX=true
+android.enableJetifier=true
diff --git a/examples/shop_with_custom_settings/android/gradle/wrapper/gradle-wrapper.properties b/examples/shop_with_custom_settings/android/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 000000000..cb24abda1
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
diff --git a/examples/shop_with_custom_settings/android/settings.gradle b/examples/shop_with_custom_settings/android/settings.gradle
new file mode 100644
index 000000000..8641c3901
--- /dev/null
+++ b/examples/shop_with_custom_settings/android/settings.gradle
@@ -0,0 +1,25 @@
+pluginManagement {
+ def flutterSdkPath = {
+ def properties = new Properties()
+ file("local.properties").withInputStream { properties.load(it) }
+ def flutterSdkPath = properties.getProperty("flutter.sdk")
+ assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
+ return flutterSdkPath
+ }()
+
+ includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
+
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+plugins {
+ id "dev.flutter.flutter-plugin-loader" version "1.0.0"
+ id "com.android.application" version "7.1.2" apply false
+ id "org.jetbrains.kotlin.android" version "1.7.10" apply false
+}
+
+include ":app"
diff --git a/examples/shop_with_custom_settings/assets/air_max_plus.png b/examples/shop_with_custom_settings/assets/air_max_plus.png
new file mode 100644
index 000000000..8e7491430
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/air_max_plus.png differ
diff --git a/examples/shop_with_custom_settings/assets/air_max_plus_white.png b/examples/shop_with_custom_settings/assets/air_max_plus_white.png
new file mode 100644
index 000000000..63cb52a50
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/air_max_plus_white.png differ
diff --git a/examples/shop_with_custom_settings/assets/black.png b/examples/shop_with_custom_settings/assets/black.png
new file mode 100644
index 000000000..6a60b6e4a
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/black.png differ
diff --git a/examples/shop_with_custom_settings/assets/blue_shoe.png b/examples/shop_with_custom_settings/assets/blue_shoe.png
new file mode 100644
index 000000000..f3e8d03d3
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/blue_shoe.png differ
diff --git a/examples/shop_with_custom_settings/assets/flutter.png b/examples/shop_with_custom_settings/assets/flutter.png
new file mode 100644
index 000000000..c9c7f7169
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/flutter.png differ
diff --git a/examples/shop_with_custom_settings/assets/github.png b/examples/shop_with_custom_settings/assets/github.png
new file mode 100644
index 000000000..4264efdd7
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/github.png differ
diff --git a/examples/shop_with_custom_settings/assets/iphone_mockup.png b/examples/shop_with_custom_settings/assets/iphone_mockup.png
new file mode 100644
index 000000000..a0ff5c7c8
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/iphone_mockup.png differ
diff --git a/examples/shop_with_custom_settings/assets/red_shoe.png b/examples/shop_with_custom_settings/assets/red_shoe.png
new file mode 100644
index 000000000..c975bf52d
Binary files /dev/null and b/examples/shop_with_custom_settings/assets/red_shoe.png differ
diff --git a/examples/shop_with_custom_settings/devtools_options.yaml b/examples/shop_with_custom_settings/devtools_options.yaml
new file mode 100644
index 000000000..7e7e7f67d
--- /dev/null
+++ b/examples/shop_with_custom_settings/devtools_options.yaml
@@ -0,0 +1 @@
+extensions:
diff --git a/examples/shop_with_custom_settings/firebase.json b/examples/shop_with_custom_settings/firebase.json
new file mode 100644
index 000000000..66037326c
--- /dev/null
+++ b/examples/shop_with_custom_settings/firebase.json
@@ -0,0 +1,16 @@
+{
+ "hosting": {
+ "public": "build/web",
+ "ignore": [
+ "firebase.json",
+ "**/.*",
+ "**/node_modules/**"
+ ],
+ "rewrites": [
+ {
+ "source": "**",
+ "destination": "/index.html"
+ }
+ ]
+ }
+}
diff --git a/examples/shop_with_custom_settings/ios/.gitignore b/examples/shop_with_custom_settings/ios/.gitignore
new file mode 100644
index 000000000..7a7f9873a
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/.gitignore
@@ -0,0 +1,34 @@
+**/dgph
+*.mode1v3
+*.mode2v3
+*.moved-aside
+*.pbxuser
+*.perspectivev3
+**/*sync/
+.sconsign.dblite
+.tags*
+**/.vagrant/
+**/DerivedData/
+Icon?
+**/Pods/
+**/.symlinks/
+profile
+xcuserdata
+**/.generated/
+Flutter/App.framework
+Flutter/Flutter.framework
+Flutter/Flutter.podspec
+Flutter/Generated.xcconfig
+Flutter/ephemeral/
+Flutter/app.flx
+Flutter/app.zip
+Flutter/flutter_assets/
+Flutter/flutter_export_environment.sh
+ServiceDefinitions.json
+Runner/GeneratedPluginRegistrant.*
+
+# Exceptions to above rules.
+!default.mode1v3
+!default.mode2v3
+!default.pbxuser
+!default.perspectivev3
diff --git a/examples/shop_with_custom_settings/ios/Flutter/AppFrameworkInfo.plist b/examples/shop_with_custom_settings/ios/Flutter/AppFrameworkInfo.plist
new file mode 100644
index 000000000..7c5696400
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Flutter/AppFrameworkInfo.plist
@@ -0,0 +1,26 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ en
+ CFBundleExecutable
+ App
+ CFBundleIdentifier
+ io.flutter.flutter.app
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ App
+ CFBundlePackageType
+ FMWK
+ CFBundleShortVersionString
+ 1.0
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ 1.0
+ MinimumOSVersion
+ 12.0
+
+
diff --git a/examples/shop_with_custom_settings/ios/Flutter/Debug.xcconfig b/examples/shop_with_custom_settings/ios/Flutter/Debug.xcconfig
new file mode 100644
index 000000000..ec97fc6f3
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Flutter/Debug.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
+#include "Generated.xcconfig"
diff --git a/examples/shop_with_custom_settings/ios/Flutter/Release.xcconfig b/examples/shop_with_custom_settings/ios/Flutter/Release.xcconfig
new file mode 100644
index 000000000..c4855bfe2
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Flutter/Release.xcconfig
@@ -0,0 +1,2 @@
+#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
+#include "Generated.xcconfig"
diff --git a/examples/shop_with_custom_settings/ios/Podfile b/examples/shop_with_custom_settings/ios/Podfile
new file mode 100644
index 000000000..279576f38
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Podfile
@@ -0,0 +1,41 @@
+# Uncomment this line to define a global platform for your project
+# platform :ios, '12.0'
+
+# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
+ENV['COCOAPODS_DISABLE_STATS'] = 'true'
+
+project 'Runner', {
+ 'Debug' => :debug,
+ 'Profile' => :release,
+ 'Release' => :release,
+}
+
+def flutter_root
+ generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
+ unless File.exist?(generated_xcode_build_settings_path)
+ raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
+ end
+
+ File.foreach(generated_xcode_build_settings_path) do |line|
+ matches = line.match(/FLUTTER_ROOT\=(.*)/)
+ return matches[1].strip if matches
+ end
+ raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
+end
+
+require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
+
+flutter_ios_podfile_setup
+
+target 'Runner' do
+ use_frameworks!
+ use_modular_headers!
+
+ flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
+end
+
+post_install do |installer|
+ installer.pods_project.targets.each do |target|
+ flutter_additional_ios_build_settings(target)
+ end
+end
diff --git a/examples/shop_with_custom_settings/ios/Podfile.lock b/examples/shop_with_custom_settings/ios/Podfile.lock
new file mode 100644
index 000000000..385e06c20
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Podfile.lock
@@ -0,0 +1,152 @@
+PODS:
+ - Firebase/Analytics (10.18.0):
+ - Firebase/Core
+ - Firebase/Core (10.18.0):
+ - Firebase/CoreOnly
+ - FirebaseAnalytics (~> 10.18.0)
+ - Firebase/CoreOnly (10.18.0):
+ - FirebaseCore (= 10.18.0)
+ - firebase_analytics (10.8.0):
+ - Firebase/Analytics (= 10.18.0)
+ - firebase_core
+ - Flutter
+ - firebase_core (2.24.2):
+ - Firebase/CoreOnly (= 10.18.0)
+ - Flutter
+ - FirebaseAnalytics (10.18.0):
+ - FirebaseAnalytics/AdIdSupport (= 10.18.0)
+ - FirebaseCore (~> 10.0)
+ - FirebaseInstallations (~> 10.0)
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.11)
+ - GoogleUtilities/MethodSwizzler (~> 7.11)
+ - GoogleUtilities/Network (~> 7.11)
+ - "GoogleUtilities/NSData+zlib (~> 7.11)"
+ - nanopb (< 2.30910.0, >= 2.30908.0)
+ - FirebaseAnalytics/AdIdSupport (10.18.0):
+ - FirebaseCore (~> 10.0)
+ - FirebaseInstallations (~> 10.0)
+ - GoogleAppMeasurement (= 10.18.0)
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.11)
+ - GoogleUtilities/MethodSwizzler (~> 7.11)
+ - GoogleUtilities/Network (~> 7.11)
+ - "GoogleUtilities/NSData+zlib (~> 7.11)"
+ - nanopb (< 2.30910.0, >= 2.30908.0)
+ - FirebaseCore (10.18.0):
+ - FirebaseCoreInternal (~> 10.0)
+ - GoogleUtilities/Environment (~> 7.12)
+ - GoogleUtilities/Logger (~> 7.12)
+ - FirebaseCoreInternal (10.20.0):
+ - "GoogleUtilities/NSData+zlib (~> 7.8)"
+ - FirebaseInstallations (10.20.0):
+ - FirebaseCore (~> 10.0)
+ - GoogleUtilities/Environment (~> 7.8)
+ - GoogleUtilities/UserDefaults (~> 7.8)
+ - PromisesObjC (~> 2.1)
+ - Flutter (1.0.0)
+ - GoogleAppMeasurement (10.18.0):
+ - GoogleAppMeasurement/AdIdSupport (= 10.18.0)
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.11)
+ - GoogleUtilities/MethodSwizzler (~> 7.11)
+ - GoogleUtilities/Network (~> 7.11)
+ - "GoogleUtilities/NSData+zlib (~> 7.11)"
+ - nanopb (< 2.30910.0, >= 2.30908.0)
+ - GoogleAppMeasurement/AdIdSupport (10.18.0):
+ - GoogleAppMeasurement/WithoutAdIdSupport (= 10.18.0)
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.11)
+ - GoogleUtilities/MethodSwizzler (~> 7.11)
+ - GoogleUtilities/Network (~> 7.11)
+ - "GoogleUtilities/NSData+zlib (~> 7.11)"
+ - nanopb (< 2.30910.0, >= 2.30908.0)
+ - GoogleAppMeasurement/WithoutAdIdSupport (10.18.0):
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.11)
+ - GoogleUtilities/MethodSwizzler (~> 7.11)
+ - GoogleUtilities/Network (~> 7.11)
+ - "GoogleUtilities/NSData+zlib (~> 7.11)"
+ - nanopb (< 2.30910.0, >= 2.30908.0)
+ - GoogleUtilities/AppDelegateSwizzler (7.12.0):
+ - GoogleUtilities/Environment
+ - GoogleUtilities/Logger
+ - GoogleUtilities/Network
+ - GoogleUtilities/Environment (7.12.0):
+ - PromisesObjC (< 3.0, >= 1.2)
+ - GoogleUtilities/Logger (7.12.0):
+ - GoogleUtilities/Environment
+ - GoogleUtilities/MethodSwizzler (7.12.0):
+ - GoogleUtilities/Logger
+ - GoogleUtilities/Network (7.12.0):
+ - GoogleUtilities/Logger
+ - "GoogleUtilities/NSData+zlib"
+ - GoogleUtilities/Reachability
+ - "GoogleUtilities/NSData+zlib (7.12.0)"
+ - GoogleUtilities/Reachability (7.12.0):
+ - GoogleUtilities/Logger
+ - GoogleUtilities/UserDefaults (7.12.0):
+ - GoogleUtilities/Logger
+ - nanopb (2.30909.1):
+ - nanopb/decode (= 2.30909.1)
+ - nanopb/encode (= 2.30909.1)
+ - nanopb/decode (2.30909.1)
+ - nanopb/encode (2.30909.1)
+ - path_provider_foundation (0.0.1):
+ - Flutter
+ - FlutterMacOS
+ - PromisesObjC (2.3.1)
+ - share_plus (0.0.1):
+ - Flutter
+ - url_launcher_ios (0.0.1):
+ - Flutter
+
+DEPENDENCIES:
+ - firebase_analytics (from `.symlinks/plugins/firebase_analytics/ios`)
+ - firebase_core (from `.symlinks/plugins/firebase_core/ios`)
+ - Flutter (from `Flutter`)
+ - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
+ - share_plus (from `.symlinks/plugins/share_plus/ios`)
+ - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
+
+SPEC REPOS:
+ trunk:
+ - Firebase
+ - FirebaseAnalytics
+ - FirebaseCore
+ - FirebaseCoreInternal
+ - FirebaseInstallations
+ - GoogleAppMeasurement
+ - GoogleUtilities
+ - nanopb
+ - PromisesObjC
+
+EXTERNAL SOURCES:
+ firebase_analytics:
+ :path: ".symlinks/plugins/firebase_analytics/ios"
+ firebase_core:
+ :path: ".symlinks/plugins/firebase_core/ios"
+ Flutter:
+ :path: Flutter
+ path_provider_foundation:
+ :path: ".symlinks/plugins/path_provider_foundation/darwin"
+ share_plus:
+ :path: ".symlinks/plugins/share_plus/ios"
+ url_launcher_ios:
+ :path: ".symlinks/plugins/url_launcher_ios/ios"
+
+SPEC CHECKSUMS:
+ Firebase: 414ad272f8d02dfbf12662a9d43f4bba9bec2a06
+ firebase_analytics: b3d6dd14c61549a29abb10e9843446a4d8bb53eb
+ firebase_core: 0af4a2b24f62071f9bf283691c0ee41556dcb3f5
+ FirebaseAnalytics: 4d310b35c48eaa4a058ddc04bdca6bdb5dc0fe80
+ FirebaseCore: 2322423314d92f946219c8791674d2f3345b598f
+ FirebaseCoreInternal: efeeb171ac02d623bdaefe121539939821e10811
+ FirebaseInstallations: 558b1da7d65afeb996fd5c814332f013234ece4e
+ Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
+ GoogleAppMeasurement: 70ce9aa438cff1cfb31ea3e660bcc67734cb716e
+ GoogleUtilities: 0759d1a57ebb953965c2dfe0ba4c82e95ccc2e34
+ nanopb: d4d75c12cd1316f4a64e3c6963f879ecd4b5e0d5
+ path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
+ PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4
+ share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5
+ url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812
+
+PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011
+
+COCOAPODS: 1.15.2
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.pbxproj b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.pbxproj
new file mode 100644
index 000000000..3a975d8ff
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.pbxproj
@@ -0,0 +1,555 @@
+// !$*UTF8*$!
+{
+ archiveVersion = 1;
+ classes = {
+ };
+ objectVersion = 54;
+ objects = {
+
+/* Begin PBXBuildFile section */
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
+ 8085C882D61E5FDEB14A586C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E371307C1A18E2C5A3240413 /* Pods_Runner.framework */; };
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
+/* End PBXBuildFile section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ );
+ name = "Embed Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+ 0A6F4423095F51BC0DB988FE /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
+ 5FCA87C01110C9A88C068605 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ A66EB26B3E779516B540894E /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
+ E371307C1A18E2C5A3240413 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 8085C882D61E5FDEB14A586C /* Pods_Runner.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+ 44BDBC0FFBC73983292F3E91 /* Frameworks */ = {
+ isa = PBXGroup;
+ children = (
+ E371307C1A18E2C5A3240413 /* Pods_Runner.framework */,
+ );
+ name = Frameworks;
+ sourceTree = "";
+ };
+ 9740EEB11CF90186004384FC /* Flutter */ = {
+ isa = PBXGroup;
+ children = (
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
+ );
+ name = Flutter;
+ sourceTree = "";
+ };
+ 97C146E51CF9000F007C117D = {
+ isa = PBXGroup;
+ children = (
+ 9740EEB11CF90186004384FC /* Flutter */,
+ 97C146F01CF9000F007C117D /* Runner */,
+ 97C146EF1CF9000F007C117D /* Products */,
+ AC08E13B47D1115C63660D15 /* Pods */,
+ 44BDBC0FFBC73983292F3E91 /* Frameworks */,
+ );
+ sourceTree = "";
+ };
+ 97C146EF1CF9000F007C117D /* Products */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146EE1CF9000F007C117D /* Runner.app */,
+ );
+ name = Products;
+ sourceTree = "";
+ };
+ 97C146F01CF9000F007C117D /* Runner */ = {
+ isa = PBXGroup;
+ children = (
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
+ 97C147021CF9000F007C117D /* Info.plist */,
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
+ );
+ path = Runner;
+ sourceTree = "";
+ };
+ AC08E13B47D1115C63660D15 /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ A66EB26B3E779516B540894E /* Pods-Runner.debug.xcconfig */,
+ 0A6F4423095F51BC0DB988FE /* Pods-Runner.release.xcconfig */,
+ 5FCA87C01110C9A88C068605 /* Pods-Runner.profile.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ sourceTree = "";
+ };
+/* End PBXGroup section */
+
+/* Begin PBXNativeTarget section */
+ 97C146ED1CF9000F007C117D /* Runner */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
+ buildPhases = (
+ 8BA145D81CCCD6EF6B2CF97B /* [CP] Check Pods Manifest.lock */,
+ 9740EEB61CF901F6004384FC /* Run Script */,
+ 97C146EA1CF9000F007C117D /* Sources */,
+ 97C146EB1CF9000F007C117D /* Frameworks */,
+ 97C146EC1CF9000F007C117D /* Resources */,
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+ 175891D37D8EEF6981AEF14F /* [CP] Embed Pods Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Runner;
+ productName = Runner;
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
+ productType = "com.apple.product-type.application";
+ };
+/* End PBXNativeTarget section */
+
+/* Begin PBXProject section */
+ 97C146E61CF9000F007C117D /* Project object */ = {
+ isa = PBXProject;
+ attributes = {
+ LastUpgradeCheck = 1510;
+ ORGANIZATIONNAME = "";
+ TargetAttributes = {
+ 97C146ED1CF9000F007C117D = {
+ CreatedOnToolsVersion = 7.3.1;
+ LastSwiftMigration = 1100;
+ };
+ };
+ };
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
+ compatibilityVersion = "Xcode 9.3";
+ developmentRegion = en;
+ hasScannedForEncodings = 0;
+ knownRegions = (
+ en,
+ Base,
+ );
+ mainGroup = 97C146E51CF9000F007C117D;
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
+ projectDirPath = "";
+ projectRoot = "";
+ targets = (
+ 97C146ED1CF9000F007C117D /* Runner */,
+ );
+ };
+/* End PBXProject section */
+
+/* Begin PBXResourcesBuildPhase section */
+ 97C146EC1CF9000F007C117D /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXResourcesBuildPhase section */
+
+/* Begin PBXShellScriptBuildPhase section */
+ 175891D37D8EEF6981AEF14F /* [CP] Embed Pods Frameworks */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
+ );
+ name = "[CP] Embed Pods Frameworks";
+ outputFileListPaths = (
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
+ );
+ name = "Thin Binary";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
+ };
+ 8BA145D81CCCD6EF6B2CF97B /* [CP] Check Pods Manifest.lock */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+ "${PODS_ROOT}/Manifest.lock",
+ );
+ name = "[CP] Check Pods Manifest.lock";
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+ showEnvVarsInLog = 0;
+ };
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
+ isa = PBXShellScriptBuildPhase;
+ alwaysOutOfDate = 1;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputPaths = (
+ );
+ name = "Run Script";
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
+ };
+/* End PBXShellScriptBuildPhase section */
+
+/* Begin PBXSourcesBuildPhase section */
+ 97C146EA1CF9000F007C117D /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXSourcesBuildPhase section */
+
+/* Begin PBXVariantGroup section */
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C146FB1CF9000F007C117D /* Base */,
+ );
+ name = Main.storyboard;
+ sourceTree = "";
+ };
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 97C147001CF9000F007C117D /* Base */,
+ );
+ name = LaunchScreen.storyboard;
+ sourceTree = "";
+ };
+/* End PBXVariantGroup section */
+
+/* Begin XCBuildConfiguration section */
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Profile;
+ };
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = B5U2P45VJN;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.shopAppExample;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Profile;
+ };
+ 97C147031CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ 97C147041CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 97C147061CF9000F007C117D /* Debug */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = B5U2P45VJN;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.shopAppExample;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Debug;
+ };
+ 97C147071CF9000F007C117D /* Release */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = B5U2P45VJN;
+ ENABLE_BITCODE = NO;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.shopAppExample;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = Release;
+ };
+/* End XCBuildConfiguration section */
+
+/* Begin XCConfigurationList section */
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147031CF9000F007C117D /* Debug */,
+ 97C147041CF9000F007C117D /* Release */,
+ 249021D3217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 97C147061CF9000F007C117D /* Debug */,
+ 97C147071CF9000F007C117D /* Release */,
+ 249021D4217E4FDB00AE95B9 /* Profile */,
+ );
+ defaultConfigurationIsVisible = 0;
+ defaultConfigurationName = Release;
+ };
+/* End XCConfigurationList section */
+ };
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
+}
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 000000000..919434a62
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 000000000..18d981003
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 000000000..f9b0d7c5e
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
new file mode 100644
index 000000000..5e31d3d34
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcworkspace/contents.xcworkspacedata b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 000000000..21a3cc14c
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 000000000..18d981003
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
new file mode 100644
index 000000000..f9b0d7c5e
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
@@ -0,0 +1,8 @@
+
+
+
+
+ PreviewsEnabled
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner/AppDelegate.swift b/examples/shop_with_custom_settings/ios/Runner/AppDelegate.swift
new file mode 100644
index 000000000..70693e4a8
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/AppDelegate.swift
@@ -0,0 +1,13 @@
+import UIKit
+import Flutter
+
+@UIApplicationMain
+@objc class AppDelegate: FlutterAppDelegate {
+ override func application(
+ _ application: UIApplication,
+ didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
+ ) -> Bool {
+ GeneratedPluginRegistrant.register(with: self)
+ return super.application(application, didFinishLaunchingWithOptions: launchOptions)
+ }
+}
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
new file mode 100644
index 000000000..d36b1fab2
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
@@ -0,0 +1,122 @@
+{
+ "images" : [
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-20x20@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-29x29@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-40x40@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "60x60",
+ "idiom" : "iphone",
+ "filename" : "Icon-App-60x60@3x.png",
+ "scale" : "3x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "20x20",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-20x20@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "29x29",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-29x29@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "40x40",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-40x40@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@1x.png",
+ "scale" : "1x"
+ },
+ {
+ "size" : "76x76",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-76x76@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "83.5x83.5",
+ "idiom" : "ipad",
+ "filename" : "Icon-App-83.5x83.5@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "size" : "1024x1024",
+ "idiom" : "ios-marketing",
+ "filename" : "Icon-App-1024x1024@1x.png",
+ "scale" : "1x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
new file mode 100644
index 000000000..dc9ada472
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
new file mode 100644
index 000000000..28c6bf030
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
new file mode 100644
index 000000000..2ccbfd967
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
new file mode 100644
index 000000000..f091b6b0b
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
new file mode 100644
index 000000000..4cde12118
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
new file mode 100644
index 000000000..d0ef06e7e
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
new file mode 100644
index 000000000..dcdc2306c
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
new file mode 100644
index 000000000..2ccbfd967
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
new file mode 100644
index 000000000..c8f9ed8f5
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
new file mode 100644
index 000000000..a6d6b8609
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
new file mode 100644
index 000000000..a6d6b8609
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
new file mode 100644
index 000000000..75b2d164a
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
new file mode 100644
index 000000000..c4df70d39
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
new file mode 100644
index 000000000..6a84f41e1
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
new file mode 100644
index 000000000..d0e1f5853
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
new file mode 100644
index 000000000..0bedcf2fd
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -0,0 +1,23 @@
+{
+ "images" : [
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage.png",
+ "scale" : "1x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@2x.png",
+ "scale" : "2x"
+ },
+ {
+ "idiom" : "universal",
+ "filename" : "LaunchImage@3x.png",
+ "scale" : "3x"
+ }
+ ],
+ "info" : {
+ "version" : 1,
+ "author" : "xcode"
+ }
+}
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
new file mode 100644
index 000000000..9da19eaca
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
new file mode 100644
index 000000000..9da19eaca
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
new file mode 100644
index 000000000..9da19eaca
Binary files /dev/null and b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ
diff --git a/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
new file mode 100644
index 000000000..89c2725b7
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
@@ -0,0 +1,5 @@
+# Launch Screen Assets
+
+You can customize the launch screen with your own desired assets by replacing the image files in this directory.
+
+You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
\ No newline at end of file
diff --git a/examples/shop_with_custom_settings/ios/Runner/Base.lproj/LaunchScreen.storyboard b/examples/shop_with_custom_settings/ios/Runner/Base.lproj/LaunchScreen.storyboard
new file mode 100644
index 000000000..f2e259c7c
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Base.lproj/LaunchScreen.storyboard
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner/Base.lproj/Main.storyboard b/examples/shop_with_custom_settings/ios/Runner/Base.lproj/Main.storyboard
new file mode 100644
index 000000000..f3c28516f
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Base.lproj/Main.storyboard
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner/Info.plist b/examples/shop_with_custom_settings/ios/Runner/Info.plist
new file mode 100644
index 000000000..dd50cd712
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Info.plist
@@ -0,0 +1,51 @@
+
+
+
+
+ CFBundleDevelopmentRegion
+ $(DEVELOPMENT_LANGUAGE)
+ CFBundleDisplayName
+ Shop App Example
+ CFBundleExecutable
+ $(EXECUTABLE_NAME)
+ CFBundleIdentifier
+ $(PRODUCT_BUNDLE_IDENTIFIER)
+ CFBundleInfoDictionaryVersion
+ 6.0
+ CFBundleName
+ shop_app_example
+ CFBundlePackageType
+ APPL
+ CFBundleShortVersionString
+ $(FLUTTER_BUILD_NAME)
+ CFBundleSignature
+ ????
+ CFBundleVersion
+ $(FLUTTER_BUILD_NUMBER)
+ LSRequiresIPhoneOS
+
+ UILaunchStoryboardName
+ LaunchScreen
+ UIMainStoryboardFile
+ Main
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UIViewControllerBasedStatusBarAppearance
+
+ CADisableMinimumFrameDurationOnPhone
+
+ UIApplicationSupportsIndirectInputEvents
+
+
+
diff --git a/examples/shop_with_custom_settings/ios/Runner/Runner-Bridging-Header.h b/examples/shop_with_custom_settings/ios/Runner/Runner-Bridging-Header.h
new file mode 100644
index 000000000..308a2a560
--- /dev/null
+++ b/examples/shop_with_custom_settings/ios/Runner/Runner-Bridging-Header.h
@@ -0,0 +1 @@
+#import "GeneratedPluginRegistrant.h"
diff --git a/examples/shop_with_custom_settings/lib/custom_settings_bottom_sheet.dart b/examples/shop_with_custom_settings/lib/custom_settings_bottom_sheet.dart
new file mode 100644
index 000000000..b58af05dc
--- /dev/null
+++ b/examples/shop_with_custom_settings/lib/custom_settings_bottom_sheet.dart
@@ -0,0 +1,130 @@
+import 'package:flutter/material.dart';
+
+import 'package:talker_flutter/talker_flutter.dart';
+import 'package:talker_shop_app_example/utils/custom_settings.dart';
+import 'package:talker_shop_app_example/utils/di.dart';
+
+TalkerSettingsBottomSheetBase talkerCustomSettingsBottomSheetCreator({
+ required ValueNotifier talker,
+ required TalkerScreenTheme talkerScreenTheme}) {
+
+ return TalkerCustomSettingsBottomSheet(
+ key: UniqueKey(),
+ talkerScreenTheme: talkerScreenTheme,
+ talker: talker,
+ );
+}
+
+class TalkerCustomSettingsBottomSheet extends TalkerSettingsBottomSheetBase {
+ const TalkerCustomSettingsBottomSheet({
+ super.key,
+ required super.talkerScreenTheme,
+ required super.talker,
+ }) : super();
+
+ @override
+ State createState() =>
+ _TalkerCustomSettingsBottomSheetState();
+}
+
+class _TalkerCustomSettingsBottomSheetState extends State {
+
+ @override
+ void initState() {
+ widget.talker.addListener(() {
+ if (mounted) setState(() {});
+ });
+ super.initState();
+ }
+
+ @override
+ Widget build(BuildContext context) {
+ final theme = Theme.of(context);
+ final settings = [
+ Padding(
+ padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
+ child: Text(
+ 'Basic settings',
+ style: theme.textTheme.titleLarge?.copyWith(
+ color: widget.talkerScreenTheme.textColor,
+ fontWeight: FontWeight.w700,
+ ),
+ ),
+ ),
+ TalkerSettingsCard(
+ talkerScreenTheme: widget.talkerScreenTheme,
+ title: 'Enabled',
+ enabled: widget.talker.value.settings.enabled,
+ onChanged: (enabled) {
+ (enabled ? widget.talker.value.enable : widget.talker.value.disable)
+ .call();
+ widget.talker.notifyListeners();
+ },
+ ),
+ TalkerSettingsCard(
+ canEdit: widget.talker.value.settings.enabled,
+ talkerScreenTheme: widget.talkerScreenTheme,
+ title: 'Use console logs',
+ enabled: widget.talker.value.settings.useConsoleLogs,
+ onChanged: (enabled) {
+ widget.talker.value.configure(
+ settings: widget.talker.value.settings.copyWith(
+ useConsoleLogs: enabled,
+ ),
+ );
+ widget.talker.notifyListeners();
+ },
+ ),
+ TalkerSettingsCard(
+ canEdit: widget.talker.value.settings.enabled,
+ talkerScreenTheme: widget.talkerScreenTheme,
+ title: 'Use history',
+ enabled: widget.talker.value.settings.useHistory,
+ onChanged: (enabled) {
+ widget.talker.value.configure(
+ settings: widget.talker.value.settings.copyWith(
+ useHistory: enabled,
+ ),
+ );
+ widget.talker.notifyListeners();
+ },
+ ),
+ TalkerSettingsCard(
+ canEdit: widget.talker.value.settings.enabled,
+ talkerScreenTheme: widget.talkerScreenTheme,
+ title: 'Custom Bool',
+ enabled: DI().someCustomBool &&
+ widget.talker.value.settings.enabled,
+ onChanged: (enabled) {
+ DI().someCustomBool = enabled;
+ DI().info("Custom Bool set to ${enabled ? 'TRUE' : 'FALSE'}");
+ widget.talker.notifyListeners();
+ },
+ ),
+ TalkerSettingsCard(
+ canEdit: true,
+ talkerScreenTheme: widget.talkerScreenTheme,
+ title: 'Global Custom Bool',
+ enabled: DI().anotherCustomBool,
+ onChanged: (enabled) {
+ DI().anotherCustomBool = enabled;
+ DI().info("Global Custom Bool set to ${enabled ? 'TRUE' : 'FALSE'}");
+ widget.talker.notifyListeners();
+ },
+ ),
+ ];
+
+ return TalkerBaseBottomSheet(
+ title: 'Talker Custom Settings',
+ talkerScreenTheme: widget.talkerScreenTheme,
+ child: Expanded(
+ child: CustomScrollView(
+ slivers: [
+ const SliverToBoxAdapter(child: SizedBox(height: 16)),
+ ...settings.map((e) => SliverToBoxAdapter(child: e)),
+ ],
+ ),
+ ),
+ );
+ }
+}
diff --git a/examples/shop_with_custom_settings/lib/features/product/bloc/bloc.dart b/examples/shop_with_custom_settings/lib/features/product/bloc/bloc.dart
new file mode 100644
index 000000000..26e553676
--- /dev/null
+++ b/examples/shop_with_custom_settings/lib/features/product/bloc/bloc.dart
@@ -0,0 +1 @@
+export 'product/product_bloc.dart';
diff --git a/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_bloc.dart b/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_bloc.dart
new file mode 100644
index 000000000..aeabda810
--- /dev/null
+++ b/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_bloc.dart
@@ -0,0 +1,59 @@
+import 'package:equatable/equatable.dart';
+import 'package:flutter_bloc/flutter_bloc.dart';
+import 'package:talker_flutter/talker_flutter.dart';
+import 'package:talker_shop_app_example/repositories/products/products.dart';
+import 'package:talker_shop_app_example/utils/utils.dart';
+
+part 'product_event.dart';
+part 'product_state.dart';
+
+class ProductBloc extends Bloc {
+ ProductBloc({
+ required AbstractProductsRepository productsRepository,
+ }) : _productsRepository = productsRepository,
+ super(ProductInitial()) {
+ on(_loadProduct);
+ on(_updateProduct);
+ on(_addToCard);
+ }
+
+ final AbstractProductsRepository _productsRepository;
+
+ Future _loadProduct(
+ LoadProduct event,
+ Emitter emit,
+ ) async {
+ try {
+ emit(ProductLoading());
+ final product = await _productsRepository.getProduct(event.id);
+ emit(ProductLoaded(product));
+ } on Exception catch (e, st) {
+ DI().handle(e, st);
+ emit(ProductLoadingFailure());
+ }
+ }
+
+ Future _updateProduct(
+ UpdateProduct event,
+ Emitter emit,
+ ) async {
+ try {
+ await _productsRepository.addToFavorites(event.product.id);
+ emit(ProductLoaded(event.product));
+ } on Exception catch (e, st) {
+ DI().handle(e, st);
+ // emit(ProductLoadingFailure());
+ }
+ }
+
+ Future _addToCard(
+ AddProductToCart event,
+ Emitter emit,
+ ) async {
+ try {
+ await _productsRepository.addToCart(event.id);
+ } on Exception catch (e, st) {
+ DI().handle(e, st);
+ }
+ }
+}
diff --git a/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_event.dart b/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_event.dart
new file mode 100644
index 000000000..0893fe6b8
--- /dev/null
+++ b/examples/shop_with_custom_settings/lib/features/product/bloc/product/product_event.dart
@@ -0,0 +1,35 @@
+part of 'product_bloc.dart';
+
+abstract class ProductEvent extends Equatable {
+ const ProductEvent();
+
+ @override
+ List