├── Chapter11 ├── hands_on_platform_views │ ├── ios │ │ ├── Assets │ │ │ └── .gitkeep │ │ └── Classes │ │ │ └── HandsOnPlatformViewsPlugin.h │ ├── LICENSE │ ├── android │ │ ├── gradle.properties │ │ ├── settings.gradle │ │ ├── .gitignore │ │ └── src │ │ │ └── main │ │ │ └── AndroidManifest.xml │ ├── CHANGELOG.md │ ├── example │ │ ├── android │ │ │ ├── gradle.properties │ │ │ ├── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ └── app │ │ │ │ └── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ └── ios │ │ │ ├── Runner │ │ │ └── Runner-Bridging-Header.h │ │ │ └── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ └── .gitignore └── hands_on_maps │ ├── README.md │ ├── android │ ├── gradle.properties │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── ios │ ├── Flutter │ ├── Debug.xcconfig │ └── Release.xcconfig │ ├── Runner │ ├── Runner-Bridging-Header.h │ └── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ └── LaunchImage@3x.png │ │ └── AppIcon.appiconset │ │ ├── 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 │ └── Runner.xcworkspace │ └── contents.xcworkspacedata ├── Chapter09 └── hands_on_platform_version │ ├── ios │ ├── Assets │ │ └── .gitkeep │ └── Classes │ │ └── HandsOnPlatformVersionPlugin.h │ ├── LICENSE │ ├── android │ ├── gradle.properties │ ├── settings.gradle │ ├── .gitignore │ └── src │ │ └── main │ │ └── AndroidManifest.xml │ ├── example │ ├── android │ │ └── gradle.properties │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ └── Runner │ │ └── Runner-Bridging-Header.h │ ├── CHANGELOG.md │ └── .gitignore ├── Chapter13 ├── hands_on_background_process │ ├── ios │ │ ├── Assets │ │ │ └── .gitkeep │ │ └── Classes │ │ │ └── HandsOnBackgroundProcessPlugin.h │ ├── LICENSE │ ├── android │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── encodings.xml │ │ │ └── caches │ │ │ │ └── build_file_checksums.ser │ │ ├── gradle.properties │ │ ├── settings.gradle │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── .gitignore │ │ ├── src │ │ │ └── main │ │ │ │ └── AndroidManifest.xml │ │ └── gradle │ │ │ └── wrapper │ │ │ └── gradle-wrapper.jar │ ├── CHANGELOG.md │ ├── example │ │ ├── android │ │ │ ├── gradle.properties │ │ │ ├── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ └── app │ │ │ │ └── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ └── ios │ │ │ ├── Runner │ │ │ └── Runner-Bridging-Header.h │ │ │ └── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ ├── .gitignore │ └── .idea │ │ ├── encodings.xml │ │ └── vcs.xml ├── hands_on_compute │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── Runner-Bridging-Header.h │ │ └── Assets.xcassets │ │ │ └── LaunchImage.imageset │ │ │ └── LaunchImage.png │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata └── hands_on_localizations │ ├── android │ ├── gradle.properties │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ └── app │ │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── ios │ ├── Flutter │ ├── Debug.xcconfig │ └── Release.xcconfig │ └── Runner │ └── AppDelegate.h ├── Chapter10 ├── hands_on_contact_picker │ ├── README.md │ ├── ios │ │ ├── Runner │ │ │ └── Runner-Bridging-Header.h │ │ └── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ ├── android │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── gradle.properties │ │ └── app │ │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── assets │ │ └── default_avatar.png ├── hands_on_image_picker │ ├── README.md │ ├── ios │ │ ├── Runner │ │ │ └── Runner-Bridging-Header.h │ │ └── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ ├── android │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── gradle.properties │ │ └── app │ │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── assets │ │ └── default_avatar.png └── hands_on_url_launcher │ ├── README.md │ ├── ios │ ├── Runner │ │ └── Runner-Bridging-Header.h │ └── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── android │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── gradle.properties │ └── app │ │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── fonts │ ├── Ubuntu-Bold.ttf │ ├── Ubuntu-Italic.ttf │ ├── Ubuntu-Medium.ttf │ └── Ubuntu-Regular.ttf │ └── assets │ └── default_avatar.png ├── Chapter05 ├── gestures │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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-1024x1024@1x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── README.md ├── input │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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-1024x1024@1x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner.xcodeproj │ │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── README.md └── hands_on_input │ ├── android │ ├── gradle.properties │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner │ │ ├── AppDelegate.h │ │ └── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ │ │ └── AppIcon.appiconset │ │ │ ├── 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 │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── lib │ └── friend.dart ├── Chapter06 ├── themes │ ├── android │ │ ├── gradle.properties │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ └── app │ │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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-1024x1024@1x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── README.md ├── hands_on_fonts │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── lib │ │ └── friend.dart ├── layout_builder │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── AppDelegate.h │ │ └── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ │ │ └── AppIcon.appiconset │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata ├── cupertino_themes │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── AppDelegate.h │ │ └── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ │ │ └── AppIcon.appiconset │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata ├── hands_on_mediaquery │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ └── AppDelegate.h │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── lib │ │ └── friend.dart ├── hands_on_themes │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ └── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── lib │ │ └── friend.dart ├── hands_on_cupertino_theme │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ └── Runner │ │ └── AppDelegate.h └── Ubuntu-fonts │ ├── Ubuntu-Bold.ttf │ ├── Ubuntu-Italic.ttf │ ├── Ubuntu-Light.ttf │ ├── Ubuntu-Medium.ttf │ ├── Ubuntu-Regular.ttf │ ├── Ubuntu-BoldItalic.ttf │ ├── Ubuntu-LightItalic.ttf │ └── Ubuntu-MediumItalic.ttf ├── Chapter03 ├── hello_flutter │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── AppDelegate.h │ │ └── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ │ │ └── AppIcon.appiconset │ │ │ ├── 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-1024x1024@1x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata └── INSTALL.md ├── Chapter07 ├── hands_on_hero │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── fonts │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Italic.ttf │ │ ├── Ubuntu-Medium.ttf │ │ └── Ubuntu-Regular.ttf │ └── lib │ │ └── friend.dart └── navigation │ ├── android │ ├── gradle.properties │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── ios │ ├── Flutter │ ├── Debug.xcconfig │ └── Release.xcconfig │ ├── Runner │ ├── AppDelegate.h │ └── Assets.xcassets │ │ ├── LaunchImage.imageset │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ └── LaunchImage@3x.png │ │ └── AppIcon.appiconset │ │ ├── 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-1024x1024@1x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── Runner.xcworkspace │ └── contents.xcworkspacedata ├── Chapter12 ├── hands_on_tests │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── Runner-Bridging-Header.h │ │ └── Assets.xcassets │ │ │ ├── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ └── LaunchImage@3x.png │ │ │ └── AppIcon.appiconset │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata └── hands_on_deployment │ ├── ios │ ├── Runner │ │ ├── Runner-Bridging-Header.h │ │ └── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ └── 180.png │ └── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── android │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── gradle.properties │ ├── web_hi_res_512.png │ └── key.properties │ ├── fonts │ ├── Ubuntu-Bold.ttf │ ├── Ubuntu-Italic.ttf │ ├── Ubuntu-Medium.ttf │ └── Ubuntu-Regular.ttf │ └── assets │ └── default_avatar.png ├── Chapter04 ├── hands_on_layouts │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── ios │ │ ├── Flutter │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner │ │ │ ├── AppDelegate.h │ │ │ └── Assets.xcassets │ │ │ │ ├── LaunchImage.imageset │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ └── LaunchImage@3x.png │ │ │ │ └── AppIcon.appiconset │ │ │ │ ├── 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 │ │ └── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── lib │ │ └── friend.dart └── hands_on_layouts_widgets_refactoring │ ├── android │ └── gradle.properties │ └── ios │ ├── Flutter │ ├── Debug.xcconfig │ └── Release.xcconfig │ └── Runner │ └── AppDelegate.h ├── Chapter14 ├── hands_on_transform │ ├── android │ │ ├── gradle.properties │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── README.md │ └── ios │ │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ │ ├── Runner │ │ ├── Runner-Bridging-Header.h │ │ └── Assets.xcassets │ │ │ └── LaunchImage.imageset │ │ │ └── LaunchImage.png │ │ └── Runner.xcworkspace │ │ └── contents.xcworkspacedata └── hands_on_custom_painter │ ├── android │ ├── gradle.properties │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ └── Runner │ │ └── Runner-Bridging-Header.h │ └── README.md ├── Chapter15 └── hands_on_animations │ ├── android │ ├── gradle.properties │ └── app │ │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ └── ic_launcher.png │ └── ios │ ├── Flutter │ ├── Debug.xcconfig │ └── Release.xcconfig │ ├── Runner │ └── AppDelegate.h │ └── Runner.xcworkspace │ └── contents.xcworkspacedata ├── Chapter02 ├── example_15_libraries │ ├── example_1_importing_variants │ │ ├── package │ │ │ ├── pubspec.yaml │ │ │ ├── lib │ │ │ │ └── foo │ │ │ │ │ ├── a.dart │ │ │ │ │ └── b.dart │ │ │ ├── .packages │ │ │ ├── main.dart │ │ │ └── pubspec.lock │ │ ├── absolute │ │ │ ├── foo │ │ │ │ ├── a.dart │ │ │ │ └── b.dart │ │ │ └── main.dart │ │ ├── relative │ │ │ ├── foo │ │ │ │ ├── a.dart │ │ │ │ └── b.dart │ │ │ └── main.dart │ │ └── web │ │ │ └── main.dart │ ├── example_3_library_definition │ │ └── multiple_files_parts │ │ │ └── person_lib │ │ │ └── person_types.dart │ └── example_2_conflict │ │ └── b.dart ├── example_16_packages │ ├── simple_package_structure │ │ ├── lib │ │ │ ├── src │ │ │ │ └── simple_package_structure_base.dart │ │ │ └── .DS_Store │ │ ├── CHANGELOG.md │ │ └── .DS_Store │ └── .DS_Store ├── example_17_futures_async │ ├── pubspec.yaml │ ├── .packages │ └── pubspec.lock └── example_18_unit_tests │ └── lib │ ├── calculator.dart │ └── src │ └── calculator_base.dart ├── Chapter08 └── hands_on_firebase │ ├── android │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ └── gradle.properties │ ├── ios │ ├── Flutter │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ └── Runner │ │ ├── AppDelegate.h │ │ └── Assets.xcassets │ │ └── LaunchImage.imageset │ │ └── LaunchImage.png │ ├── fonts │ ├── Ubuntu-Bold.ttf │ ├── Ubuntu-Italic.ttf │ ├── Ubuntu-Medium.ttf │ └── Ubuntu-Regular.ttf │ └── assets │ └── default_avatar.png └── Chapter01 ├── bonus_exceptions_examples ├── 1_handling_exceptions_unhandled.dart └── 6_throwing_exceptions.dart ├── 3_control_flow_conditions_and_loops └── example_26_for_loop.dart ├── 2_types ├── .packages ├── example_14_boolean.dart ├── example_21_symbols.dart ├── example_22_dynamic.dart └── example_17_maps.dart └── 3_control_flow_functions ├── .packages └── pubspec.yaml /Chapter11/hands_on_platform_views/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_contact_picker 2 | -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_image_picker 2 | -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_url_launcher 2 | -------------------------------------------------------------------------------- /Chapter05/gestures/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter05/input/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter05/input/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/input/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/themes/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/themes/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/themes/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter07/navigation/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_maps 2 | 3 | A google maps example -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/themes/README.md: -------------------------------------------------------------------------------- 1 | # Themes - Chapter 7 2 | 3 | Flutter Theme widget examples -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/.idea/.name: -------------------------------------------------------------------------------- 1 | hands_on_background_process -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_transform 2 | 3 | Transform widgets example -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: "my_package" -------------------------------------------------------------------------------- /Chapter02/example_16_packages/simple_package_structure/lib/src/simple_package_structure_base.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter05/input/README.md: -------------------------------------------------------------------------------- 1 | # input 2 | 3 | A Flutter project with input (Form + FormField) example. 4 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts_widgets_refactoring/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts_widgets_refactoring/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'hands_on_platform_views' 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts_widgets_refactoring/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'hands_on_platform_version' 2 | -------------------------------------------------------------------------------- /Chapter02/example_17_futures_async/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: futures_async 2 | 3 | environment: 4 | sdk: '>=2.0.0 <3.0.0' -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'hands_on_background_process' 2 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /Chapter02/example_17_futures_async/.packages: -------------------------------------------------------------------------------- 1 | # Generated by pub on 2019-01-06 17:07:19.233092. 2 | futures_async:lib/ 3 | -------------------------------------------------------------------------------- /Chapter02/example_18_unit_tests/lib/calculator.dart: -------------------------------------------------------------------------------- 1 | library unit_tests; 2 | 3 | export 'src/calculator_base.dart'; 4 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .dart_tool/ 3 | 4 | .packages 5 | .pub/ 6 | 7 | build/ 8 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/absolute/foo/a.dart: -------------------------------------------------------------------------------- 1 | // relative import b library 2 | import 'b.dart'; -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/absolute/foo/b.dart: -------------------------------------------------------------------------------- 1 | // relative import a library 2 | import 'a.dart'; -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/relative/foo/a.dart: -------------------------------------------------------------------------------- 1 | // relative import b library 2 | import 'b.dart'; -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/relative/foo/b.dart: -------------------------------------------------------------------------------- 1 | // relative import a library 2 | import 'a.dart'; -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/lib/foo/a.dart: -------------------------------------------------------------------------------- 1 | // relative import b library 2 | import 'b.dart'; -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/lib/foo/b.dart: -------------------------------------------------------------------------------- 1 | // relative import a library 2 | import 'a.dart'; -------------------------------------------------------------------------------- /Chapter02/example_16_packages/simple_package_structure/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version, created by Stagehand 4 | -------------------------------------------------------------------------------- /Chapter03/INSTALL.md: -------------------------------------------------------------------------------- 1 | Please, follow the official install instructions, they are updated: https://flutter.io/docs/get-started/install -------------------------------------------------------------------------------- /Chapter06/themes/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter06/themes/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/README.md: -------------------------------------------------------------------------------- 1 | # hands_on_custom_painter 2 | 3 | Example on using CustomPaint widget and extending CustomPainter -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true 3 | org.gradle.jvmargs=-Xmx1536M 4 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableJetifier=true 3 | android.useAndroidX=true -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableJetifier=true 3 | android.useAndroidX=true -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableJetifier=true 3 | android.useAndroidX=true -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableJetifier=true 3 | android.useAndroidX=true -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/.packages: -------------------------------------------------------------------------------- 1 | # Generated by pub on 2019-01-01 20:41:04.021071. 2 | my_package:lib/ 3 | -------------------------------------------------------------------------------- /Chapter02/example_16_packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter02/example_16_packages/.DS_Store -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/web/main.dart: -------------------------------------------------------------------------------- 1 | // web import libraries 2 | import "http://dartpackage.com/dart_package/lib/a.dart"; -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter01/bonus_exceptions_examples/1_handling_exceptions_unhandled.dart: -------------------------------------------------------------------------------- 1 | 2 | main() { 3 | var a; 4 | 5 | a.doSomething(); // will throw a exception 6 | } -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/relative/main.dart: -------------------------------------------------------------------------------- 1 | // relative import subdir libraries 2 | import 'foo/a.dart'; 3 | import 'foo/b.dart'; -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-BoldItalic.ttf -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-LightItalic.ttf -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/Ubuntu-fonts/Ubuntu-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/Ubuntu-fonts/Ubuntu-MediumItalic.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir=.. 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter02/example_18_unit_tests/lib/src/calculator_base.dart: -------------------------------------------------------------------------------- 1 | class Calculator { 2 | num sumTwoNumbers(num a, num b) { 3 | return (a ?? 0) + (b ?? 0); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/assets/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/assets/default_avatar.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/assets/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/assets/default_avatar.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/fonts/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/fonts/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/fonts/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/fonts/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/assets/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/assets/default_avatar.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/assets/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/assets/default_avatar.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/ios/Classes/HandsOnPlatformViewsPlugin.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface HandsOnPlatformViewsPlugin : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/web_hi_res_512.png -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter02/example_17_futures_async/pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://www.dartlang.org/tools/pub/glossary#lockfile 3 | packages: {} 4 | sdks: 5 | dart: ">=2.0.0 <3.0.0" 6 | -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/assets/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/assets/default_avatar.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/key.properties: -------------------------------------------------------------------------------- 1 | storePassword=PUT_YOUR_STOREPASS_HERE 2 | keyPassword=PUT_YOUR_KEYPASS_HERE 3 | keyAlias=PUT_YOUR_KEY_ALIAS_HERE 4 | storeFile=KEYSTORE_PATH -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 2 | #include "Generated.xcconfig" 3 | -------------------------------------------------------------------------------- /Chapter01/3_control_flow_conditions_and_loops/example_26_for_loop.dart: -------------------------------------------------------------------------------- 1 | /** 2 | * for loop 3 | */ 4 | void main() { 5 | for (var i = 0; i < 4; i++) { 6 | print('hello $i'); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts_widgets_refactoring/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : FlutterAppDelegate 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/ios/Classes/HandsOnPlatformVersionPlugin.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface HandsOnPlatformVersionPlugin : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Chapter01/bonus_exceptions_examples/6_throwing_exceptions.dart: -------------------------------------------------------------------------------- 1 | 2 | main() { 3 | throw Exception("some exception!"); 4 | 5 | throw 'Hello, this message was thrown.'; // we throw our own error 6 | } -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/main.dart: -------------------------------------------------------------------------------- 1 | // package import subdir libraries 2 | import 'package:my_package/foo/a.dart'; 3 | import 'package:my_package/foo/b.dart'; -------------------------------------------------------------------------------- /Chapter02/example_16_packages/simple_package_structure/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter02/example_16_packages/simple_package_structure/.DS_Store -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/ios/Classes/HandsOnBackgroundProcessPlugin.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface HandsOnBackgroundProcessPlugin : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Chapter01/2_types/.packages: -------------------------------------------------------------------------------- 1 | # Generated by pub on 2018-12-22 20:03:29.597922. 2 | meta:file:///C:/Users/Biessek/AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/meta-1.1.6/lib/ 3 | chapter1_types:lib/ 4 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/absolute/main.dart: -------------------------------------------------------------------------------- 1 | // absolute import foo libraries 2 | import "file:///c:/dart_package/foo/a.dart"; 3 | import "file:///c:/dart_package/foo/b.dart"; -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter01/2_types/example_14_boolean.dart: -------------------------------------------------------------------------------- 1 | /** 2 | * boolean type 3 | */ 4 | main() { 5 | bool a = true; 6 | bool b = false; 7 | bool c = a || b; 8 | 9 | print(c); // prints true 10 | } 11 | -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_1_importing_variants/package/pubspec.lock: -------------------------------------------------------------------------------- 1 | # Generated by pub 2 | # See https://www.dartlang.org/tools/pub/glossary#lockfile 3 | packages: {} 4 | sdks: 5 | dart: any 6 | -------------------------------------------------------------------------------- /Chapter02/example_16_packages/simple_package_structure/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter02/example_16_packages/simple_package_structure/lib/.DS_Store -------------------------------------------------------------------------------- /Chapter05/gestures/README.md: -------------------------------------------------------------------------------- 1 | # gestures 2 | 3 | A Flutter project containing some examples on GestureDetector events. 4 | 5 | ## Getting Started 6 | 7 | Check out the lib/main.dart file for examples on gestures. -------------------------------------------------------------------------------- /Chapter05/input/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/input/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/input/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/input/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_platform_views/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/gestures/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/gestures/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/gestures/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/input/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter09/hands_on_platform_version/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/gestures/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/gestures/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/navigation/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/navigation/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/navigation/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/navigation/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter01/3_control_flow_functions/.packages: -------------------------------------------------------------------------------- 1 | # Generated by pub on 2018-12-22 19:01:29.478111. 2 | meta:file:///C:/Users/Biessek/AppData/Roaming/Pub/Cache/hosted/pub.dartlang.org/meta-1.1.6/lib/ 3 | chapter1_functions:lib/ 4 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/navigation/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/2_types/example_21_symbols.dart: -------------------------------------------------------------------------------- 1 | import 'dart:mirrors'; 2 | 3 | /** 4 | * Symbols 5 | */ 6 | main() { 7 | int someInt = 1; 8 | print(reflect(someInt).type.reflectedType.toString()); // prints: int 9 | } 10 | -------------------------------------------------------------------------------- /Chapter01/2_types/example_22_dynamic.dart: -------------------------------------------------------------------------------- 1 | import 'dart:mirrors'; 2 | 3 | /** 4 | * dynamic 5 | */ 6 | main() { 7 | var someInt = 1; 8 | print(reflect(someInt).type.reflectedType.toString()); // prints: int 9 | } 10 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_background_process/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter15/hands_on_animations/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter15/hands_on_animations/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/2_types/example_17_maps.dart: -------------------------------------------------------------------------------- 1 | /** 2 | * Maps 3 | */ 4 | main() { 5 | Map simpleMap = {"key1": "value", "key2": 2}; 6 | simpleMap["someKey"] = "c"; 7 | 8 | print(simpleMap); // prints {key1: value, key2: 2, someKey: c} 9 | } -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_3_library_definition/multiple_files_parts/person_lib/person_types.dart: -------------------------------------------------------------------------------- 1 | /** 2 | * person_type part of person libary definition 3 | */ 4 | part of person; 5 | 6 | enum PersonType { student, employee } -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_mediaquery/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_deployment/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/android/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_background_process/android/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter15/hands_on_animations/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_image_picker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_url_launcher/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter01/3_control_flow_functions/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: chapter1_functions 2 | version: 1.0.0 3 | description: >- 4 | This folder contains all chapter 1 function examples. 5 | environment: 6 | sdk: '>=2.0.0 <3.0.0' 7 | dependencies: 8 | meta: ^1.1.6 -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/gestures/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_cupertino_theme/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter10/hands_on_contact_picker/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_compute/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter13/hands_on_localizations/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_custom_painter/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Chapter02/example_15_libraries/example_2_conflict/b.dart: -------------------------------------------------------------------------------- 1 | /** 2 | * this is a Dart library 3 | */ 4 | class Person { 5 | // the 'b' version of Person class was intentionally left empty to illustrate the difference clearly 6 | } 7 | 8 | class PersonType {} -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter05/hands_on_input/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_fonts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/hands_on_mediaquery/lib/friend.dart: -------------------------------------------------------------------------------- 1 | class Friend { 2 | final String name; 3 | final String number; 4 | final String photoURL; 5 | 6 | Friend({ 7 | this.name, 8 | this.number, 9 | this.photoURL, 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/hands_on_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/layout_builder/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/hands_on_hero/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter07/navigation/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter08/hands_on_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter08/hands_on_firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter11/hands_on_maps/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter12/hands_on_tests/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter13/hands_on_background_process/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter13/hands_on_compute/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter14/hands_on_transform/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter14/hands_on_transform/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Chapter15/hands_on_animations/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter03/hello_flutter/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter04/hands_on_layouts/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Chapter05/input/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Flutter-for-Beginners/HEAD/Chapter06/cupertino_themes/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png --------------------------------------------------------------------------------