├── Chapter03 ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── dev │ │ │ │ │ └── imtoori │ │ │ │ │ └── packt_chapter_3 │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── main.dart │ └── stateful_page.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart ├── Chapter04 ├── flutter_grid_list │ ├── __MACOSX │ │ └── flutter_grid_list │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_grid_list │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_grid_list │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart ├── flutter_horizontal_list │ ├── __MACOSX │ │ └── flutter_horizontal_list │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_horizontal_list │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_horizontal_list │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart ├── flutter_list_widget │ ├── __MACOSX │ │ └── flutter_list_widget │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_list_widget │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_list_widget │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart ├── flutter_listview_builder │ ├── __MACOSX │ │ └── flutter_listview_builder │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_listview_builder │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_listview_builder │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart ├── flutter_listview_data_source │ ├── __MACOSX │ │ └── flutter_listview_data_source │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_listview_data_source │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_listview_data_source │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart └── flutter_listview_seperator │ ├── __MACOSX │ └── flutter_listview_seperator │ │ ├── android │ │ ├── ._build.gradle │ │ ├── ._gradle.properties │ │ ├── ._settings.gradle │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ._launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ └── values │ │ │ │ └── ._styles.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ └── ._gradle-wrapper.properties │ │ └── ios │ │ ├── Flutter │ │ ├── ._AppFrameworkInfo.plist │ │ ├── ._Debug.xcconfig │ │ └── ._Release.xcconfig │ │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ._Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ └── ._contents.xcworkspacedata │ │ └── Runner │ │ ├── ._AppDelegate.h │ │ ├── ._AppDelegate.m │ │ ├── ._main.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── ._Contents.json │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── ._Contents.json │ │ │ ├── ._LaunchImage.png │ │ │ ├── ._LaunchImage@2x.png │ │ │ ├── ._LaunchImage@3x.png │ │ │ └── ._README.md │ │ └── Base.lproj │ │ ├── ._LaunchScreen.storyboard │ │ └── ._Main.storyboard │ └── flutter_listview_seperator │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── flutterdomain │ │ │ │ │ └── flutter_listview_seperator │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Chapter05 ├── flutter_json │ ├── __MACOSX │ │ └── flutter_json │ │ │ ├── android │ │ │ ├── ._build.gradle │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_json │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_json │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart └── flutter_locale │ ├── __MACOSX │ └── flutter_locale │ │ ├── android │ │ ├── ._build.gradle │ │ ├── ._gradle.properties │ │ ├── ._settings.gradle │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ._launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ └── values │ │ │ │ └── ._styles.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ └── ._gradle-wrapper.properties │ │ └── ios │ │ ├── Flutter │ │ ├── ._AppFrameworkInfo.plist │ │ ├── ._Debug.xcconfig │ │ └── ._Release.xcconfig │ │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ._Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ └── ._contents.xcworkspacedata │ │ └── Runner │ │ ├── ._AppDelegate.h │ │ ├── ._AppDelegate.m │ │ ├── ._main.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── ._Contents.json │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── ._Contents.json │ │ │ ├── ._LaunchImage.png │ │ │ ├── ._LaunchImage@2x.png │ │ │ ├── ._LaunchImage@3x.png │ │ │ └── ._README.md │ │ └── Base.lproj │ │ ├── ._LaunchScreen.storyboard │ │ └── ._Main.storyboard │ └── flutter_locale │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── flutterdomain │ │ │ │ │ └── flutter_locale │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Chapter06 ├── flutter_app_battery │ ├── __MACOSX │ │ └── flutter_app_battery │ │ │ ├── ._.DS_Store │ │ │ ├── android │ │ │ ├── ._gradle.properties │ │ │ ├── ._settings.gradle │ │ │ ├── app │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── ._launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ._ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── ._styles.xml │ │ │ └── gradle │ │ │ │ └── wrapper │ │ │ │ └── ._gradle-wrapper.properties │ │ │ └── ios │ │ │ ├── Flutter │ │ │ ├── ._AppFrameworkInfo.plist │ │ │ ├── ._Debug.xcconfig │ │ │ └── ._Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ ├── project.xcworkspace │ │ │ │ └── ._contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ._Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ │ └── Runner │ │ │ ├── ._AppDelegate.h │ │ │ ├── ._AppDelegate.m │ │ │ ├── ._main.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── ._Contents.json │ │ │ │ ├── ._LaunchImage.png │ │ │ │ ├── ._LaunchImage@2x.png │ │ │ │ ├── ._LaunchImage@3x.png │ │ │ │ └── ._README.md │ │ │ └── Base.lproj │ │ │ ├── ._LaunchScreen.storyboard │ │ │ └── ._Main.storyboard │ └── flutter_app_battery │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── flutterdomain │ │ │ │ │ │ └── flutter_app_battery │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── lib │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ └── widget_test.dart └── flutter_url │ ├── __MACOSX │ └── flutter_url │ │ ├── android │ │ ├── ._build.gradle │ │ ├── ._gradle.properties │ │ ├── ._settings.gradle │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ._launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ └── values │ │ │ │ └── ._styles.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ └── ._gradle-wrapper.properties │ │ └── ios │ │ ├── ._Podfile │ │ ├── Flutter │ │ ├── ._AppFrameworkInfo.plist │ │ ├── ._Debug.xcconfig │ │ └── ._Release.xcconfig │ │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ._Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ └── ._contents.xcworkspacedata │ │ └── Runner │ │ ├── ._AppDelegate.h │ │ ├── ._AppDelegate.m │ │ ├── ._main.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── ._Contents.json │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── ._Contents.json │ │ │ ├── ._LaunchImage.png │ │ │ ├── ._LaunchImage@2x.png │ │ │ ├── ._LaunchImage@3x.png │ │ │ └── ._README.md │ │ └── Base.lproj │ │ ├── ._LaunchScreen.storyboard │ │ └── ._Main.storyboard │ └── flutter_url │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── flutterdomain │ │ │ │ │ └── flutter_url │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── Chapter07 ├── __MACOSX │ └── flutter_firebase │ │ ├── android │ │ ├── ._build.gradle │ │ ├── ._gradle.properties │ │ ├── ._settings.gradle │ │ ├── app │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── ._launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ._ic_launcher.png │ │ │ │ └── values │ │ │ │ └── ._styles.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ └── ._gradle-wrapper.properties │ │ └── ios │ │ ├── ._Podfile │ │ ├── Flutter │ │ ├── ._AppFrameworkInfo.plist │ │ ├── ._Debug.xcconfig │ │ └── ._Release.xcconfig │ │ ├── Runner.xcodeproj │ │ ├── project.xcworkspace │ │ │ └── ._contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ._Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ └── ._contents.xcworkspacedata │ │ └── Runner │ │ ├── ._AppDelegate.h │ │ ├── ._AppDelegate.m │ │ ├── ._main.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── ._Contents.json │ │ │ ├── ._Icon-App-1024x1024@1x.png │ │ │ ├── ._Icon-App-20x20@1x.png │ │ │ ├── ._Icon-App-20x20@2x.png │ │ │ ├── ._Icon-App-20x20@3x.png │ │ │ ├── ._Icon-App-29x29@1x.png │ │ │ ├── ._Icon-App-29x29@2x.png │ │ │ ├── ._Icon-App-29x29@3x.png │ │ │ ├── ._Icon-App-40x40@1x.png │ │ │ ├── ._Icon-App-40x40@2x.png │ │ │ ├── ._Icon-App-40x40@3x.png │ │ │ ├── ._Icon-App-60x60@2x.png │ │ │ ├── ._Icon-App-60x60@3x.png │ │ │ ├── ._Icon-App-76x76@1x.png │ │ │ ├── ._Icon-App-76x76@2x.png │ │ │ └── ._Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── ._Contents.json │ │ │ ├── ._LaunchImage.png │ │ │ ├── ._LaunchImage@2x.png │ │ │ ├── ._LaunchImage@3x.png │ │ │ └── ._README.md │ │ └── Base.lproj │ │ ├── ._LaunchScreen.storyboard │ │ └── ._Main.storyboard └── flutter_firebase │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── flutterdomain │ │ │ │ │ └── flutter_firebase │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle │ ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── lib │ └── main.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ └── widget_test.dart ├── LICENSE └── README.md /Chapter03/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/.gitignore -------------------------------------------------------------------------------- /Chapter03/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/.metadata -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter03/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter03/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/kotlin/dev/imtoori/packt_chapter_3/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/kotlin/dev/imtoori/packt_chapter_3/MainActivity.kt -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter03/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter03/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/build.gradle -------------------------------------------------------------------------------- /Chapter03/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter03/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter03/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/android/settings.gradle -------------------------------------------------------------------------------- /Chapter03/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter03/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter03/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter03/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter03/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter03/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter03/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter03/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Chapter03/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter03/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter03/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/lib/main.dart -------------------------------------------------------------------------------- /Chapter03/lib/stateful_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/lib/stateful_page.dart -------------------------------------------------------------------------------- /Chapter03/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/pubspec.lock -------------------------------------------------------------------------------- /Chapter03/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/pubspec.yaml -------------------------------------------------------------------------------- /Chapter03/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter03/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/gradle/wrapper/._gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/android/gradle/wrapper/._gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner.xcworkspace/._contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner.xcworkspace/._contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/__MACOSX/flutter_grid_list/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_grid_list/flutter_grid_list/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_grid_list/flutter_grid_list/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/__MACOSX/flutter_horizontal_list/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_horizontal_list/flutter_horizontal_list/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_horizontal_list/flutter_horizontal_list/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/__MACOSX/flutter_list_widget/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_list_widget/flutter_list_widget/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_list_widget/flutter_list_widget/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/__MACOSX/flutter_listview_builder/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_builder/flutter_listview_builder/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_builder/flutter_listview_builder/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/__MACOSX/flutter_listview_data_source/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_data_source/flutter_listview_data_source/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_data_source/flutter_listview_data_source/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/__MACOSX/flutter_listview_seperator/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/.gitignore -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/.metadata -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/README.md -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/build.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/android/settings.gradle -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/lib/main.dart -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/pubspec.lock -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/pubspec.yaml -------------------------------------------------------------------------------- /Chapter04/flutter_listview_seperator/flutter_listview_seperator/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter04/flutter_listview_seperator/flutter_listview_seperator/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/._build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/drawable/._launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/drawable/._launch_background.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/android/gradle/wrapper/._gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/android/gradle/wrapper/._gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner.xcworkspace/._contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner.xcworkspace/._contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/__MACOSX/flutter_json/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/.gitignore -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/.metadata -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/README.md -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/android/settings.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/lib/main.dart -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/pubspec.lock -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/pubspec.yaml -------------------------------------------------------------------------------- /Chapter05/flutter_json/flutter_json/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_json/flutter_json/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/android/gradle/wrapper/._gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/android/gradle/wrapper/._gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner.xcworkspace/._contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner.xcworkspace/._contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/__MACOSX/flutter_locale/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/.gitignore -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/.metadata -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/README.md -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/build.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/android/settings.gradle -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/lib/main.dart -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/pubspec.lock -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/pubspec.yaml -------------------------------------------------------------------------------- /Chapter05/flutter_locale/flutter_locale/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter05/flutter_locale/flutter_locale/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/._.DS_Store -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/__MACOSX/flutter_app_battery/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/.gitignore -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/.metadata -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/README.md -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/build.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/android/settings.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/lib/main.dart -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/pubspec.lock -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/pubspec.yaml -------------------------------------------------------------------------------- /Chapter06/flutter_app_battery/flutter_app_battery/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_app_battery/flutter_app_battery/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/._build.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/drawable/._launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/drawable/._launch_background.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/android/gradle/wrapper/._gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/android/gradle/wrapper/._gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/._Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/._Podfile -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner.xcworkspace/._contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner.xcworkspace/._contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/._README.md -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/__MACOSX/flutter_url/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/.gitignore -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/.metadata -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/README.md -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/build.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/android/settings.gradle -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Podfile -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/lib/main.dart -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/pubspec.lock -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/pubspec.yaml -------------------------------------------------------------------------------- /Chapter06/flutter_url/flutter_url/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter06/flutter_url/flutter_url/test/widget_test.dart -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/._build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/._build.gradle -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/._gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/._gradle.properties -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/._settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/._settings.gradle -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/drawable/._launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/drawable/._launch_background.xml -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-hdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-mdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/mipmap-xxxhdpi/._ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/values/._styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/app/src/main/res/values/._styles.xml -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/android/gradle/wrapper/._gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/android/gradle/wrapper/._gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/._Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/._Podfile -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._Debug.xcconfig -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Flutter/._Release.xcconfig -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/._Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/._Runner.xcscheme -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner.xcworkspace/._contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner.xcworkspace/._contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/._AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/._AppDelegate.h -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/._AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/._AppDelegate.m -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/._main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/._main.m -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/._Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/._Contents.json -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._Contents.json -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._LaunchImage.png -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/._README.md -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Base.lproj/._LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Base.lproj/._LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter07/__MACOSX/flutter_firebase/ios/Runner/Base.lproj/._Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/__MACOSX/flutter_firebase/ios/Runner/Base.lproj/._Main.storyboard -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/.gitignore -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/.metadata -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/README.md -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/build.gradle -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/java/flutterdomain/flutter_firebase/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/java/flutterdomain/flutter_firebase/MainActivity.java -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/build.gradle -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/android/settings.gradle -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Podfile -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/ios/Runner/main.m -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/lib/main.dart -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/pubspec.lock -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/pubspec.yaml -------------------------------------------------------------------------------- /Chapter07/flutter_firebase/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/Chapter07/flutter_firebase/test/widget_test.dart -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Google-Flutter-Mobile-Development-Quick-Start-Guide/HEAD/README.md --------------------------------------------------------------------------------