├── .github └── workflows │ └── website.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── dart.png ├── flutter.png ├── flutter_black.png ├── flutter_original.png ├── flutter_white.png └── github.png ├── bin ├── autogenerate.dart ├── common │ ├── common.dart │ ├── directory.dart │ ├── html_generator.dart │ ├── social_metadata.dart │ └── web_driver.dart ├── flutter_showcase.dart └── screenshot.dart ├── example ├── .firebase │ └── hosting.YnVpbGQvd2ViX3Nob3djYXNl.cache ├── .firebaserc ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── apps │ ├── _shared │ │ ├── README.md │ │ ├── lib │ │ │ ├── env.dart │ │ │ ├── math │ │ │ │ └── transform.dart │ │ │ ├── physics │ │ │ │ └── constrained_scroll_physics.dart │ │ │ └── ui │ │ │ │ ├── animated_sprite.dart │ │ │ │ ├── blend_mask.dart │ │ │ │ ├── custom_paint_mask.dart │ │ │ │ ├── path_util.dart │ │ │ │ ├── placeholder │ │ │ │ ├── placeholder_card_short.dart │ │ │ │ ├── placeholder_card_tall.dart │ │ │ │ ├── placeholder_image.dart │ │ │ │ └── placeholder_image_with_text.dart │ │ │ │ ├── sprite.dart │ │ │ │ ├── widget_mask.dart │ │ │ │ └── widget_model.dart │ │ ├── pubspec.lock │ │ └── pubspec.yaml │ ├── basketball_ptr │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── basketball_ptr │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── backboard.png │ │ │ ├── badge.png │ │ │ ├── badge@2x.png │ │ │ ├── basketball.png │ │ │ ├── f.png │ │ │ ├── f@2x.png │ │ │ ├── flutter.png │ │ │ ├── flutter@2x.png │ │ │ ├── light.png │ │ │ ├── light@2x.png │ │ │ ├── maroon.png │ │ │ ├── maroon@2x.png │ │ │ ├── net.png │ │ │ ├── rim.png │ │ │ ├── viking.png │ │ │ └── viking@2x.png │ │ ├── fonts │ │ │ ├── FjallaOne-Regular.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-SemiBold.ttf │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── game_list_item.dart │ │ │ ├── game_list_view.dart │ │ │ ├── game_score.dart │ │ │ ├── game_time.dart │ │ │ ├── main.dart │ │ │ ├── notifications.dart │ │ │ ├── pull_to_refresh_container.dart │ │ │ ├── scaling_info.dart │ │ │ ├── scores_app_bar.dart │ │ │ ├── spinning_basketball.dart │ │ │ └── theme_info.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── bubble_tab_bar │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── bottom_nav_animated │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── bubble_tab_bar │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ └── Montserrat-SemiBold.ttf │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── Runner-Bridging-Header.h │ │ │ │ └── main.m │ │ ├── lib │ │ │ ├── clipped_view.dart │ │ │ ├── content │ │ │ │ ├── camera_page.dart │ │ │ │ ├── content_box.dart │ │ │ │ ├── gallery_page.dart │ │ │ │ ├── home_page.dart │ │ │ │ ├── likes_page.dart │ │ │ │ └── save_page.dart │ │ │ ├── demo.dart │ │ │ ├── main.dart │ │ │ ├── navbar.dart │ │ │ ├── navbar_button.dart │ │ │ └── rotation_3d.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── constellations_list │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ ├── constellations_list │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ │ └── star_field │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── DMSerifDisplay-Regular.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ └── PlayfairDisplay-Regular.ttf │ │ ├── images │ │ │ ├── Aries-Constellation@2x.png │ │ │ ├── Aries-Text@2x.png │ │ │ ├── Camelopardalis-Constellation@2x.png │ │ │ ├── Camelopardalis-Text@2x.png │ │ │ ├── Cassiopeia-Constellation@2x.png │ │ │ ├── Cassiopeia-Text@2x.png │ │ │ ├── Cetus-Constellation@2x.png │ │ │ ├── Cetus-Text@2x.png │ │ │ ├── Pisces-Constellation@2x.png │ │ │ └── Pisces-Text@2x.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── glow.png │ │ │ ├── constellation_detail_view.dart │ │ │ ├── constellation_list_renderer.dart │ │ │ ├── constellation_list_view.dart │ │ │ ├── constellation_title_card.dart │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── main.dart │ │ │ ├── star_field │ │ │ │ ├── star_field.dart │ │ │ │ └── star_field_painter.dart │ │ │ ├── styles.dart │ │ │ └── widgets │ │ │ │ ├── fade_route_builder.dart │ │ │ │ └── nested_navigator.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── dark_ink_transition │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── dark_ink_transition │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── Merriweather-Black.otf │ │ │ │ └── Merriweather-Bold.otf │ │ │ └── images │ │ │ │ ├── icon-moon.png │ │ │ │ ├── icon-r.png │ │ │ │ ├── icon-sun.png │ │ │ │ ├── ink_mask.png │ │ │ │ ├── tendril_mask.png │ │ │ │ └── wipe_mask.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── dark_ink_bar.dart │ │ │ ├── dark_ink_content.dart │ │ │ ├── dark_ink_controls.dart │ │ │ ├── demo.dart │ │ │ ├── main.dart │ │ │ ├── sync_scroll_controller.dart │ │ │ └── transition_container.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── dog_slider │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── dog_slider │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── Montserrat-Medium.ttf │ │ │ ├── Quicksand-Bold.ttf │ │ │ ├── Quicksand-Light.ttf │ │ │ ├── Quicksand-Medium.ttf │ │ │ ├── Quicksand-Regular.ttf │ │ │ ├── Quicksand-SemiBold.ttf │ │ │ ├── Raleway-Bold.ttf │ │ │ └── Raleway-SemiBold.ttf │ │ ├── images │ │ │ ├── background.png │ │ │ ├── ball.png │ │ │ ├── cloud-1.png │ │ │ ├── cloud-2.png │ │ │ ├── ground.png │ │ │ └── logo.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── assets │ │ │ │ └── DogAnimation.flr │ │ │ ├── bouncing_icon.dart │ │ │ ├── demo.dart │ │ │ ├── dog_flare_controller.dart │ │ │ ├── dog_slider.dart │ │ │ ├── dog_slider_bg_painter.dart │ │ │ ├── main.dart │ │ │ └── moving_character_physics_2d.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── drink_rewards_list │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── drink_rewards_list │ │ │ │ │ │ │ └── MainActivity.java │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── drink_rewards_list │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ └── Poppins-SemiBold.ttf │ │ ├── images │ │ │ ├── Coffee.png │ │ │ ├── Frappuccino.png │ │ │ ├── Header-Dark.png │ │ │ ├── Header.png │ │ │ ├── Juice.png │ │ │ ├── Latte.png │ │ │ └── Tea.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── Runner-Bridging-Header.h │ │ │ │ └── main.m │ │ ├── lib │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── drink_card.dart │ │ │ ├── liquid_painter.dart │ │ │ ├── main.dart │ │ │ ├── rounded_shadow.dart │ │ │ └── syles.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── fluid_nav_bar │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── fluid_nav_bar │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── content │ │ │ │ ├── account.dart │ │ │ │ ├── grid.dart │ │ │ │ └── home.dart │ │ │ ├── curves.dart │ │ │ ├── demo.dart │ │ │ ├── fluid_button.dart │ │ │ ├── fluid_icon.dart │ │ │ ├── fluid_icon_data.dart │ │ │ ├── fluid_nav_bar.dart │ │ │ └── main.dart │ │ ├── notes.md │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── gooey_edge │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── gooey_edge │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── DM-Serif-Display │ │ │ │ ├── DMSerifDisplay-Italic.ttf │ │ │ │ └── DMSerifDisplay-Regular.ttf │ │ │ └── Open-Sans │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ └── OpenSans-SemiboldItalic.ttf │ │ ├── images │ │ │ ├── Bg-Blue.png │ │ │ ├── Bg-Red.png │ │ │ ├── Bg-Yellow.png │ │ │ ├── Illustration-Blue.png │ │ │ ├── Illustration-Red.png │ │ │ ├── Illustration-Yellow.png │ │ │ ├── Moon-Crescent.png │ │ │ ├── Slider-Blue.png │ │ │ ├── Slider-Red.png │ │ │ ├── Slider-Yellow.png │ │ │ ├── Sun-Red.png │ │ │ └── Sun-Yellow.png │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── content_card.dart │ │ │ ├── demo.dart │ │ │ ├── gooey_carousel.dart │ │ │ ├── gooey_edge.dart │ │ │ ├── gooey_edge_clipper.dart │ │ │ ├── gooey_edge_painter.dart │ │ │ ├── main.dart │ │ │ ├── side.dart │ │ │ └── sun_moon.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── indie_3d │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── indie_3d │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── Roboto-Bold.ttf │ │ │ └── Staatliches-Regular.ttf │ │ ├── images │ │ │ ├── artist_1.png │ │ │ ├── artist_2.png │ │ │ ├── artist_3.png │ │ │ └── noise.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── assets │ │ │ │ ├── cube.mtl │ │ │ │ ├── cube.obj │ │ │ │ ├── star.mtl │ │ │ │ ├── star.obj │ │ │ │ ├── torus.mtl │ │ │ │ └── torus.obj │ │ │ ├── demo.dart │ │ │ ├── indie_3d_model.dart │ │ │ ├── indie_3d_model_controller.dart │ │ │ ├── indie_app_bar.dart │ │ │ ├── main.dart │ │ │ ├── navigation.dart │ │ │ └── page.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── parallax_travel_cards_hero │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── parallax_travel_cards_hero │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── DM-Serif-Display │ │ │ │ └── DMSerifDisplay-Regular.ttf │ │ │ └── Open-Sans │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ └── OpenSans-Semibold.ttf │ │ ├── images │ │ │ ├── BlowingLeaf.png │ │ │ ├── CloudLarge.png │ │ │ ├── CloudSmall.png │ │ │ ├── Ground.png │ │ │ ├── Paris │ │ │ │ ├── Paris-Back.png │ │ │ │ ├── Paris-Front.png │ │ │ │ └── Paris-Middle.png │ │ │ ├── Road.png │ │ │ ├── Small-Cards │ │ │ │ ├── Arts.png │ │ │ │ ├── Classes.png │ │ │ │ └── FoodAndDrink.png │ │ │ └── Tree.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── city_details_page.dart │ │ │ ├── city_scenery.dart │ │ │ ├── components │ │ │ │ ├── rotation_3d.dart │ │ │ │ └── white_page_route.dart │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── hotel_list_renderer.dart │ │ │ ├── main.dart │ │ │ └── styles.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── parallax_travel_cards_list │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── gskinner │ │ │ │ │ │ │ └── parallax_scroll │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── DM-Serif-Display │ │ │ │ ├── DMSerifDisplay-Italic.ttf │ │ │ │ └── DMSerifDisplay-Regular.ttf │ │ │ └── Open-Sans │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ └── OpenSans-SemiboldItalic.ttf │ │ ├── images │ │ │ ├── Budapest │ │ │ │ ├── Budapest-Back.png │ │ │ │ ├── Budapest-Front.png │ │ │ │ └── Budapest-Middle.png │ │ │ ├── Ground.png │ │ │ ├── London │ │ │ │ ├── London-Back.png │ │ │ │ ├── London-Front.png │ │ │ │ └── London-Middle.png │ │ │ └── Pisa │ │ │ │ ├── Pisa-Back.png │ │ │ │ ├── Pisa-Front.png │ │ │ │ └── Pisa-Middle.png │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── hotel_list.dart │ │ │ ├── main.dart │ │ │ ├── rotation_3d.dart │ │ │ ├── styles.dart │ │ │ ├── travel_card_list.dart │ │ │ └── travel_card_renderer.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── particle_swipe │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── gooey_swipe │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── OpenSans-Bold.ttf │ │ │ └── OpenSans-Regular.ttf │ │ ├── images │ │ │ ├── Donut.png │ │ │ ├── Oval.png │ │ │ ├── circle_spritesheet.png │ │ │ └── spritesheet_sparkle.png │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── colored_safe_area.dart │ │ │ │ ├── particle_app_bar.dart │ │ │ │ └── sprite_sheet.dart │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── list_model.dart │ │ │ ├── main.dart │ │ │ ├── message_card.dart │ │ │ ├── particle.dart │ │ │ ├── particle_field.dart │ │ │ ├── particle_field_painter.dart │ │ │ ├── removed_swipe_item.dart │ │ │ └── swipe_item.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── plant_forms │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── plant_forms │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── Baloo-Regular.ttf │ │ │ ├── Barlow-Bold.otf │ │ │ ├── Barlow-ExtraBold.ttf │ │ │ ├── Barlow-Medium.otf │ │ │ ├── Barlow-MediumItalic.otf │ │ │ ├── Barlow-Regular.otf │ │ │ └── Barlow-SemiBold.otf │ │ ├── images │ │ │ └── plant_header_background.png │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── header.dart │ │ │ │ ├── section_separator.dart │ │ │ │ ├── section_title.dart │ │ │ │ ├── stack_pages_route.dart │ │ │ │ └── submit_button.dart │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── form_inputs │ │ │ │ ├── checkbox_input.dart │ │ │ │ ├── credit_card_input.dart │ │ │ │ ├── dropdown_menu.dart │ │ │ │ ├── input_validator.dart │ │ │ │ └── text_input.dart │ │ │ ├── form_mixin.dart │ │ │ ├── form_page.dart │ │ │ ├── main.dart │ │ │ ├── plant_form_information.dart │ │ │ ├── plant_form_payment.dart │ │ │ ├── plant_form_summary.dart │ │ │ └── styles.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── product_detail_zoom │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── product_detail_zoom │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── WorkSans-Black.ttf │ │ │ ├── WorkSans-Bold.ttf │ │ │ └── WorkSans-Regular.ttf │ │ ├── images │ │ │ ├── shopping_bag.png │ │ │ └── speaker_sprite.png │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── circle_painter.dart │ │ │ │ ├── delayed_fade_in.dart │ │ │ │ └── fade_color_page_route.dart │ │ │ ├── demo.dart │ │ │ ├── details.dart │ │ │ ├── main.dart │ │ │ ├── product_details_hero_flight.dart │ │ │ ├── product_details_transition.dart │ │ │ └── pulsing_button.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── sparkle_party │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── .vscode │ │ │ └── launch.json │ │ ├── README.md │ │ ├── android │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── draw_vertices │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── assets │ │ │ ├── buttons │ │ │ │ ├── comet-idle.png │ │ │ │ ├── comet-selected.png │ │ │ │ ├── fireworks-idle.png │ │ │ │ ├── fireworks-selected.png │ │ │ │ ├── pinwheel-idle.png │ │ │ │ ├── pinwheel-selected.png │ │ │ │ ├── waterfall-idle.png │ │ │ │ └── waterfall-selected.png │ │ │ ├── sparkleparty_bg.png │ │ │ ├── sparkleparty_logo.png │ │ │ ├── sparkleparty_logo_outline.png │ │ │ └── sparkleparty_spritesheet_2.png │ │ ├── fonts │ │ │ ├── TitilliumWeb-Bold.ttf │ │ │ └── TitilliumWeb-SemiBold.ttf │ │ ├── ios │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── demo.dart │ │ │ ├── fx_entry.dart │ │ │ ├── fx_renderer.dart │ │ │ ├── fx_switcher.dart │ │ │ ├── main.dart │ │ │ ├── particlefx │ │ │ │ ├── comet.dart │ │ │ │ ├── fireworks.dart │ │ │ │ ├── particle_fx.dart │ │ │ │ ├── particle_fx_painter.dart │ │ │ │ ├── pinwheel.dart │ │ │ │ └── waterfall.dart │ │ │ ├── touchpoint_notification.dart │ │ │ └── utils │ │ │ │ ├── rnd.dart │ │ │ │ ├── sprite_sheet.dart │ │ │ │ └── vertex_helpers.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ ├── spending_tracker │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── spending_tracker │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle │ │ ├── fonts │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Light.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ └── TitilliumWeb-SemiBold.ttf │ │ ├── images │ │ │ └── headshot.png │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ │ ├── app_colors.dart │ │ │ ├── chart │ │ │ │ ├── chart.dart │ │ │ │ ├── chart_background_painter.dart │ │ │ │ ├── chart_data_set.dart │ │ │ │ └── chart_painter.dart │ │ │ ├── components │ │ │ │ ├── circle_percentage_painter.dart │ │ │ │ ├── circle_percentage_widget.dart │ │ │ │ ├── header_row.dart │ │ │ │ ├── profile_icon.dart │ │ │ │ ├── scaling_info.dart │ │ │ │ ├── specific_rect_clipper.dart │ │ │ │ └── text_transition.dart │ │ │ ├── demo.dart │ │ │ ├── demo_data.dart │ │ │ ├── globals.dart │ │ │ ├── interact_notification.dart │ │ │ ├── main.dart │ │ │ ├── spending_app_bar.dart │ │ │ ├── spending_category_list.dart │ │ │ ├── spending_date_range.dart │ │ │ ├── spending_graph.dart │ │ │ └── spending_income_expenses_header.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ │ └── index.html │ └── ticket_fold │ │ ├── .gitignore │ │ ├── .metadata │ │ ├── README.md │ │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── ticket_fold │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ └── Oswald-Regular.ttf │ │ ├── images │ │ ├── airplane_blue.png │ │ ├── airplane_white.png │ │ ├── barcode.png │ │ ├── bg_blue.png │ │ ├── flutter-logo.png │ │ ├── logo_white.png │ │ ├── planeroute_blue.png │ │ └── planeroute_white.png │ │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ ├── lib │ │ ├── demo.dart │ │ ├── demo_data.dart │ │ ├── flight_barcode.dart │ │ ├── flight_details.dart │ │ ├── flight_summary.dart │ │ ├── folding_ticket.dart │ │ ├── main.dart │ │ └── ticket.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── web │ │ └── index.html ├── assets │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── burger.png │ ├── jaime_logo.png │ ├── logo-gskinner-white.png │ └── logo-gskinner.png ├── firebase.json ├── image.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── apps │ │ ├── apps.dart │ │ ├── gskinner_apps.dart │ │ └── nike_app.dart │ ├── indicator │ │ ├── effects │ │ │ ├── expanding_dots_effect.dart │ │ │ └── indicator_effect.dart │ │ ├── painters │ │ │ ├── expanding_dots_painter.dart │ │ │ └── indicator_painter.dart │ │ └── smooth_page_indicator.dart │ └── main.dart ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── lib ├── flutter_showcase.dart └── src │ ├── core │ ├── template.dart │ └── theme.dart │ ├── frame │ ├── frame.dart │ └── frame_theme.dart │ ├── showcase.dart │ └── templates │ ├── simple_template.dart │ └── templates.dart ├── mobile.png ├── preview.gif ├── pubspec.lock ├── pubspec.yaml └── test └── flutter_showcase_test.dart /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/README.md -------------------------------------------------------------------------------- /assets/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/dart.png -------------------------------------------------------------------------------- /assets/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/flutter.png -------------------------------------------------------------------------------- /assets/flutter_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/flutter_black.png -------------------------------------------------------------------------------- /assets/flutter_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/flutter_original.png -------------------------------------------------------------------------------- /assets/flutter_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/flutter_white.png -------------------------------------------------------------------------------- /assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/assets/github.png -------------------------------------------------------------------------------- /bin/autogenerate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/autogenerate.dart -------------------------------------------------------------------------------- /bin/common/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/common/common.dart -------------------------------------------------------------------------------- /bin/common/directory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/common/directory.dart -------------------------------------------------------------------------------- /bin/common/html_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/common/html_generator.dart -------------------------------------------------------------------------------- /bin/common/social_metadata.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/common/social_metadata.dart -------------------------------------------------------------------------------- /bin/common/web_driver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/common/web_driver.dart -------------------------------------------------------------------------------- /bin/flutter_showcase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/flutter_showcase.dart -------------------------------------------------------------------------------- /bin/screenshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/bin/screenshot.dart -------------------------------------------------------------------------------- /example/.firebase/hosting.YnVpbGQvd2ViX3Nob3djYXNl.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/.firebase/hosting.YnVpbGQvd2ViX3Nob3djYXNl.cache -------------------------------------------------------------------------------- /example/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/.firebaserc -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | enable-experiment: 4 | - extension-methods -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/_shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/README.md -------------------------------------------------------------------------------- /example/apps/_shared/lib/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/env.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/math/transform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/math/transform.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/physics/constrained_scroll_physics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/physics/constrained_scroll_physics.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/animated_sprite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/animated_sprite.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/blend_mask.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/blend_mask.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/custom_paint_mask.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/custom_paint_mask.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/path_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/path_util.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/placeholder/placeholder_card_short.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/placeholder/placeholder_card_short.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/placeholder/placeholder_card_tall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/placeholder/placeholder_card_tall.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/placeholder/placeholder_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/placeholder/placeholder_image.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/sprite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/sprite.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/widget_mask.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/widget_mask.dart -------------------------------------------------------------------------------- /example/apps/_shared/lib/ui/widget_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/lib/ui/widget_model.dart -------------------------------------------------------------------------------- /example/apps/_shared/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/pubspec.lock -------------------------------------------------------------------------------- /example/apps/_shared/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/_shared/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/basketball_ptr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/.gitignore -------------------------------------------------------------------------------- /example/apps/basketball_ptr/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/.metadata -------------------------------------------------------------------------------- /example/apps/basketball_ptr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/README.md -------------------------------------------------------------------------------- /example/apps/basketball_ptr/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/android/.gitignore -------------------------------------------------------------------------------- /example/apps/basketball_ptr/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/basketball_ptr/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/android/build.gradle -------------------------------------------------------------------------------- /example/apps/basketball_ptr/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/basketball_ptr/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/backboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/backboard.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/badge.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/badge@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/basketball.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/f.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/f@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/f@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/flutter.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/flutter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/flutter@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/light.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/light@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/maroon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/maroon.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/maroon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/maroon@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/net.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/rim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/rim.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/viking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/viking.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/assets/viking@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/assets/viking@2x.png -------------------------------------------------------------------------------- /example/apps/basketball_ptr/fonts/FjallaOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/fonts/FjallaOne-Regular.ttf -------------------------------------------------------------------------------- /example/apps/basketball_ptr/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /example/apps/basketball_ptr/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/basketball_ptr/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/game_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/game_list_item.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/game_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/game_list_view.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/game_score.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/game_score.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/game_time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/game_time.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/main.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/notifications.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/pull_to_refresh_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/pull_to_refresh_container.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/scaling_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/scaling_info.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/scores_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/scores_app_bar.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/spinning_basketball.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/spinning_basketball.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/lib/theme_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/lib/theme_info.dart -------------------------------------------------------------------------------- /example/apps/basketball_ptr/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/pubspec.lock -------------------------------------------------------------------------------- /example/apps/basketball_ptr/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/basketball_ptr/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/basketball_ptr/web/index.html -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/.gitignore -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/.metadata -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/README.md -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/android/.gitignore -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/android/build.gradle -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/ios/Runner/main.m -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/clipped_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/clipped_view.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/camera_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/camera_page.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/content_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/content_box.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/gallery_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/gallery_page.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/home_page.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/likes_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/likes_page.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/content/save_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/content/save_page.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/main.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/navbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/navbar.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/navbar_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/navbar_button.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/lib/rotation_3d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/lib/rotation_3d.dart -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/pubspec.lock -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/bubble_tab_bar/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/bubble_tab_bar/web/index.html -------------------------------------------------------------------------------- /example/apps/constellations_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/.gitignore -------------------------------------------------------------------------------- /example/apps/constellations_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/.metadata -------------------------------------------------------------------------------- /example/apps/constellations_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/README.md -------------------------------------------------------------------------------- /example/apps/constellations_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/android/.gitignore -------------------------------------------------------------------------------- /example/apps/constellations_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/constellations_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/android/build.gradle -------------------------------------------------------------------------------- /example/apps/constellations_list/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/constellations_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/constellations_list/fonts/DMSerifDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/fonts/DMSerifDisplay-Regular.ttf -------------------------------------------------------------------------------- /example/apps/constellations_list/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /example/apps/constellations_list/fonts/PlayfairDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/fonts/PlayfairDisplay-Regular.ttf -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Aries-Constellation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Aries-Constellation@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Aries-Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Aries-Text@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Camelopardalis-Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Camelopardalis-Text@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Cassiopeia-Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Cassiopeia-Text@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Cetus-Constellation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Cetus-Constellation@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Cetus-Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Cetus-Text@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Pisces-Constellation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Pisces-Constellation@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/images/Pisces-Text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/images/Pisces-Text@2x.png -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/constellations_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/assets/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/assets/glow.png -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/constellation_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/constellation_detail_view.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/constellation_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/constellation_list_view.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/constellation_title_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/constellation_title_card.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/main.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/star_field/star_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/star_field/star_field.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/lib/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/lib/styles.dart -------------------------------------------------------------------------------- /example/apps/constellations_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/pubspec.lock -------------------------------------------------------------------------------- /example/apps/constellations_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/constellations_list/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/constellations_list/web/index.html -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/.gitignore -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/.metadata -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/README.md -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/android/.gitignore -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/android/build.gradle -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/icon-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/icon-moon.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/icon-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/icon-r.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/icon-sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/icon-sun.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/ink_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/ink_mask.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/tendril_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/tendril_mask.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/assets/images/wipe_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/assets/images/wipe_mask.png -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/dark_ink_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/dark_ink_bar.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/dark_ink_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/dark_ink_content.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/dark_ink_controls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/dark_ink_controls.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/main.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/sync_scroll_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/sync_scroll_controller.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/lib/transition_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/lib/transition_container.dart -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/pubspec.lock -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/dark_ink_transition/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dark_ink_transition/web/index.html -------------------------------------------------------------------------------- /example/apps/dog_slider/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/.gitignore -------------------------------------------------------------------------------- /example/apps/dog_slider/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/.metadata -------------------------------------------------------------------------------- /example/apps/dog_slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/README.md -------------------------------------------------------------------------------- /example/apps/dog_slider/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/android/.gitignore -------------------------------------------------------------------------------- /example/apps/dog_slider/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/dog_slider/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/apps/dog_slider/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/android/build.gradle -------------------------------------------------------------------------------- /example/apps/dog_slider/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/dog_slider/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Quicksand-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Quicksand-Light.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Quicksand-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Quicksand-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Raleway-Bold.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/fonts/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/fonts/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/dog_slider/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/background.png -------------------------------------------------------------------------------- /example/apps/dog_slider/images/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/ball.png -------------------------------------------------------------------------------- /example/apps/dog_slider/images/cloud-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/cloud-1.png -------------------------------------------------------------------------------- /example/apps/dog_slider/images/cloud-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/cloud-2.png -------------------------------------------------------------------------------- /example/apps/dog_slider/images/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/ground.png -------------------------------------------------------------------------------- /example/apps/dog_slider/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/images/logo.png -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/dog_slider/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/assets/DogAnimation.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/assets/DogAnimation.flr -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/bouncing_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/bouncing_icon.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/dog_flare_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/dog_flare_controller.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/dog_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/dog_slider.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/dog_slider_bg_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/dog_slider_bg_painter.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/main.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/lib/moving_character_physics_2d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/lib/moving_character_physics_2d.dart -------------------------------------------------------------------------------- /example/apps/dog_slider/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/pubspec.lock -------------------------------------------------------------------------------- /example/apps/dog_slider/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/dog_slider/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/dog_slider/web/index.html -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/.gitignore -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/.metadata -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/README.md -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/android/.gitignore -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/android/build.gradle -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Coffee.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Frappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Frappuccino.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Header-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Header-Dark.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Header.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Juice.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Latte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Latte.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/images/Tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/images/Tea.png -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/ios/Runner/main.m -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/drink_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/drink_card.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/liquid_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/liquid_painter.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/main.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/rounded_shadow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/rounded_shadow.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/lib/syles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/lib/syles.dart -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/pubspec.lock -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/drink_rewards_list/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/drink_rewards_list/web/index.html -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/.gitignore -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/.metadata -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/README.md -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/android/.gitignore -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/android/build.gradle -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/content/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/content/account.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/content/grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/content/grid.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/content/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/content/home.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/curves.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/curves.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/fluid_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/fluid_button.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/fluid_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/fluid_icon.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/fluid_icon_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/fluid_icon_data.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/fluid_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/fluid_nav_bar.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/lib/main.dart -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/notes.md -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/pubspec.lock -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/fluid_nav_bar/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/fluid_nav_bar/web/index.html -------------------------------------------------------------------------------- /example/apps/gooey_edge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/.gitignore -------------------------------------------------------------------------------- /example/apps/gooey_edge/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/.metadata -------------------------------------------------------------------------------- /example/apps/gooey_edge/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/.vscode/settings.json -------------------------------------------------------------------------------- /example/apps/gooey_edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/README.md -------------------------------------------------------------------------------- /example/apps/gooey_edge/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/gooey_edge/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/apps/gooey_edge/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/android/build.gradle -------------------------------------------------------------------------------- /example/apps/gooey_edge/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/gooey_edge/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/fonts/Open-Sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Bg-Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Bg-Blue.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Bg-Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Bg-Red.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Bg-Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Bg-Yellow.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Illustration-Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Illustration-Blue.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Illustration-Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Illustration-Red.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Illustration-Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Illustration-Yellow.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Moon-Crescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Moon-Crescent.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Slider-Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Slider-Blue.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Slider-Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Slider-Red.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Slider-Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Slider-Yellow.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Sun-Red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Sun-Red.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/images/Sun-Yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/images/Sun-Yellow.png -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/gooey_edge/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/content_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/content_card.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/gooey_carousel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/gooey_carousel.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/gooey_edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/gooey_edge.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/gooey_edge_clipper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/gooey_edge_clipper.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/gooey_edge_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/gooey_edge_painter.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/main.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/side.dart: -------------------------------------------------------------------------------- 1 | enum Side { left, top, right, bottom } -------------------------------------------------------------------------------- /example/apps/gooey_edge/lib/sun_moon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/lib/sun_moon.dart -------------------------------------------------------------------------------- /example/apps/gooey_edge/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/pubspec.lock -------------------------------------------------------------------------------- /example/apps/gooey_edge/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/gooey_edge/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/gooey_edge/web/index.html -------------------------------------------------------------------------------- /example/apps/indie_3d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/.gitignore -------------------------------------------------------------------------------- /example/apps/indie_3d/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/.metadata -------------------------------------------------------------------------------- /example/apps/indie_3d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/README.md -------------------------------------------------------------------------------- /example/apps/indie_3d/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/.gitignore -------------------------------------------------------------------------------- /example/apps/indie_3d/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/indie_3d/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/apps/indie_3d/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/apps/indie_3d/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/apps/indie_3d/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/build.gradle -------------------------------------------------------------------------------- /example/apps/indie_3d/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/indie_3d/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/indie_3d/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /example/apps/indie_3d/fonts/Staatliches-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/fonts/Staatliches-Regular.ttf -------------------------------------------------------------------------------- /example/apps/indie_3d/images/artist_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/images/artist_1.png -------------------------------------------------------------------------------- /example/apps/indie_3d/images/artist_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/images/artist_2.png -------------------------------------------------------------------------------- /example/apps/indie_3d/images/artist_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/images/artist_3.png -------------------------------------------------------------------------------- /example/apps/indie_3d/images/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/images/noise.png -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/indie_3d/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/cube.mtl -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/cube.obj -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/star.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/star.mtl -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/star.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/star.obj -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/torus.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/torus.mtl -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/assets/torus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/assets/torus.obj -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/indie_3d_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/indie_3d_model.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/indie_3d_model_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/indie_3d_model_controller.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/indie_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/indie_app_bar.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/main.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/navigation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/navigation.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/lib/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/lib/page.dart -------------------------------------------------------------------------------- /example/apps/indie_3d/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/pubspec.lock -------------------------------------------------------------------------------- /example/apps/indie_3d/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/indie_3d/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/indie_3d/web/index.html -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/.gitignore -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/.metadata -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/README.md -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/android/.gitignore -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/android/build.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/BlowingLeaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/BlowingLeaf.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/CloudLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/CloudLarge.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/CloudSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/CloudSmall.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/Ground.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/Road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/Road.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/images/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/images/Tree.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/lib/city_scenery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/lib/city_scenery.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/lib/main.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/lib/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/lib/styles.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/pubspec.lock -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_hero/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_hero/web/index.html -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/.gitignore -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/.metadata -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/README.md -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/android/build.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/images/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/images/Ground.png -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/hotel_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/hotel_list.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/main.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/rotation_3d.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/rotation_3d.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/lib/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/lib/styles.dart -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/pubspec.lock -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/parallax_travel_cards_list/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/parallax_travel_cards_list/web/index.html -------------------------------------------------------------------------------- /example/apps/particle_swipe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/.gitignore -------------------------------------------------------------------------------- /example/apps/particle_swipe/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/.metadata -------------------------------------------------------------------------------- /example/apps/particle_swipe/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/.vscode/settings.json -------------------------------------------------------------------------------- /example/apps/particle_swipe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/README.md -------------------------------------------------------------------------------- /example/apps/particle_swipe/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/particle_swipe/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/android/build.gradle -------------------------------------------------------------------------------- /example/apps/particle_swipe/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/particle_swipe/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/particle_swipe/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /example/apps/particle_swipe/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /example/apps/particle_swipe/images/Donut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/images/Donut.png -------------------------------------------------------------------------------- /example/apps/particle_swipe/images/Oval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/images/Oval.png -------------------------------------------------------------------------------- /example/apps/particle_swipe/images/circle_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/images/circle_spritesheet.png -------------------------------------------------------------------------------- /example/apps/particle_swipe/images/spritesheet_sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/images/spritesheet_sparkle.png -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/particle_swipe/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/components/particle_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/components/particle_app_bar.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/components/sprite_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/components/sprite_sheet.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/list_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/list_model.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/main.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/message_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/message_card.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/particle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/particle.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/particle_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/particle_field.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/particle_field_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/particle_field_painter.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/removed_swipe_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/removed_swipe_item.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/lib/swipe_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/lib/swipe_item.dart -------------------------------------------------------------------------------- /example/apps/particle_swipe/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/pubspec.lock -------------------------------------------------------------------------------- /example/apps/particle_swipe/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/particle_swipe/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/particle_swipe/web/index.html -------------------------------------------------------------------------------- /example/apps/plant_forms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/.gitignore -------------------------------------------------------------------------------- /example/apps/plant_forms/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/.metadata -------------------------------------------------------------------------------- /example/apps/plant_forms/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/.vscode/settings.json -------------------------------------------------------------------------------- /example/apps/plant_forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/README.md -------------------------------------------------------------------------------- /example/apps/plant_forms/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/plant_forms/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/android/build.gradle -------------------------------------------------------------------------------- /example/apps/plant_forms/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/plant_forms/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Baloo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Baloo-Regular.ttf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-Bold.otf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-ExtraBold.ttf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-Medium.otf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-MediumItalic.otf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-Regular.otf -------------------------------------------------------------------------------- /example/apps/plant_forms/fonts/Barlow-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/fonts/Barlow-SemiBold.otf -------------------------------------------------------------------------------- /example/apps/plant_forms/images/plant_header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/images/plant_header_background.png -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/plant_forms/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/components/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/components/header.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/components/section_separator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/components/section_separator.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/components/section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/components/section_title.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/components/stack_pages_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/components/stack_pages_route.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/components/submit_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/components/submit_button.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_inputs/checkbox_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_inputs/checkbox_input.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_inputs/credit_card_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_inputs/credit_card_input.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_inputs/dropdown_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_inputs/dropdown_menu.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_inputs/input_validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_inputs/input_validator.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_inputs/text_input.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_inputs/text_input.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_mixin.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/form_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/form_page.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/main.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/plant_form_information.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/plant_form_information.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/plant_form_payment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/plant_form_payment.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/plant_form_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/plant_form_summary.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/lib/styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/lib/styles.dart -------------------------------------------------------------------------------- /example/apps/plant_forms/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/pubspec.lock -------------------------------------------------------------------------------- /example/apps/plant_forms/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/plant_forms/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/plant_forms/web/index.html -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/.gitignore -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/.metadata -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/README.md -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/android/build.gradle -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/fonts/WorkSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/fonts/WorkSans-Black.ttf -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/fonts/WorkSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/fonts/WorkSans-Bold.ttf -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/fonts/WorkSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/fonts/WorkSans-Regular.ttf -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/images/shopping_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/images/shopping_bag.png -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/images/speaker_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/images/speaker_sprite.png -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/lib/details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/lib/details.dart -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/lib/main.dart -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/lib/pulsing_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/lib/pulsing_button.dart -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/pubspec.lock -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/product_detail_zoom/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/product_detail_zoom/web/index.html -------------------------------------------------------------------------------- /example/apps/sparkle_party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/.gitignore -------------------------------------------------------------------------------- /example/apps/sparkle_party/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/.metadata -------------------------------------------------------------------------------- /example/apps/sparkle_party/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/.vscode/launch.json -------------------------------------------------------------------------------- /example/apps/sparkle_party/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/README.md -------------------------------------------------------------------------------- /example/apps/sparkle_party/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/sparkle_party/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/android/build.gradle -------------------------------------------------------------------------------- /example/apps/sparkle_party/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/sparkle_party/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/comet-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/comet-idle.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/comet-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/comet-selected.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/fireworks-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/fireworks-idle.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/fireworks-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/fireworks-selected.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/pinwheel-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/pinwheel-idle.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/pinwheel-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/pinwheel-selected.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/waterfall-idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/waterfall-idle.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/buttons/waterfall-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/buttons/waterfall-selected.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/sparkleparty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/sparkleparty_bg.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/sparkleparty_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/sparkleparty_logo.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/sparkleparty_logo_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/sparkleparty_logo_outline.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/assets/sparkleparty_spritesheet_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/assets/sparkleparty_spritesheet_2.png -------------------------------------------------------------------------------- /example/apps/sparkle_party/fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /example/apps/sparkle_party/fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/sparkle_party/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/fx_entry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/fx_entry.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/fx_renderer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/fx_renderer.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/fx_switcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/fx_switcher.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/main.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/particlefx/comet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/particlefx/comet.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/particlefx/fireworks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/particlefx/fireworks.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/particlefx/particle_fx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/particlefx/particle_fx.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/particlefx/pinwheel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/particlefx/pinwheel.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/particlefx/waterfall.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/particlefx/waterfall.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/touchpoint_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/touchpoint_notification.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/utils/rnd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/utils/rnd.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/utils/sprite_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/utils/sprite_sheet.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/lib/utils/vertex_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/lib/utils/vertex_helpers.dart -------------------------------------------------------------------------------- /example/apps/sparkle_party/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/pubspec.lock -------------------------------------------------------------------------------- /example/apps/sparkle_party/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/sparkle_party/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/sparkle_party/web/index.html -------------------------------------------------------------------------------- /example/apps/spending_tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/.gitignore -------------------------------------------------------------------------------- /example/apps/spending_tracker/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/.metadata -------------------------------------------------------------------------------- /example/apps/spending_tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/README.md -------------------------------------------------------------------------------- /example/apps/spending_tracker/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/android/.gitignore -------------------------------------------------------------------------------- /example/apps/spending_tracker/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/spending_tracker/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/android/build.gradle -------------------------------------------------------------------------------- /example/apps/spending_tracker/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/android/gradle.properties -------------------------------------------------------------------------------- /example/apps/spending_tracker/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/spending_tracker/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /example/apps/spending_tracker/fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /example/apps/spending_tracker/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /example/apps/spending_tracker/fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/spending_tracker/images/headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/images/headshot.png -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/ios/.gitignore -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/spending_tracker/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/app_colors.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/chart/chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/chart/chart.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/chart/chart_data_set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/chart/chart_data_set.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/chart/chart_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/chart/chart_painter.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/components/header_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/components/header_row.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/components/profile_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/components/profile_icon.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/components/scaling_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/components/scaling_info.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/globals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/globals.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/interact_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/interact_notification.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/main.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/spending_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/spending_app_bar.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/spending_category_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/spending_category_list.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/spending_date_range.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/spending_date_range.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/lib/spending_graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/lib/spending_graph.dart -------------------------------------------------------------------------------- /example/apps/spending_tracker/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/pubspec.lock -------------------------------------------------------------------------------- /example/apps/spending_tracker/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/spending_tracker/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/spending_tracker/web/index.html -------------------------------------------------------------------------------- /example/apps/ticket_fold/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/.gitignore -------------------------------------------------------------------------------- /example/apps/ticket_fold/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/.metadata -------------------------------------------------------------------------------- /example/apps/ticket_fold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/README.md -------------------------------------------------------------------------------- /example/apps/ticket_fold/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/android/app/build.gradle -------------------------------------------------------------------------------- /example/apps/ticket_fold/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/android/build.gradle -------------------------------------------------------------------------------- /example/apps/ticket_fold/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /example/apps/ticket_fold/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/android/settings.gradle -------------------------------------------------------------------------------- /example/apps/ticket_fold/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /example/apps/ticket_fold/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /example/apps/ticket_fold/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /example/apps/ticket_fold/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/airplane_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/airplane_blue.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/airplane_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/airplane_white.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/barcode.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/bg_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/bg_blue.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/flutter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/flutter-logo.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/logo_white.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/planeroute_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/planeroute_blue.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/images/planeroute_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/images/planeroute_white.png -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/apps/ticket_fold/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/demo.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/demo_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/demo_data.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/flight_barcode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/flight_barcode.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/flight_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/flight_details.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/flight_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/flight_summary.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/folding_ticket.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/folding_ticket.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/main.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/lib/ticket.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/lib/ticket.dart -------------------------------------------------------------------------------- /example/apps/ticket_fold/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/pubspec.lock -------------------------------------------------------------------------------- /example/apps/ticket_fold/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/pubspec.yaml -------------------------------------------------------------------------------- /example/apps/ticket_fold/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/apps/ticket_fold/web/index.html -------------------------------------------------------------------------------- /example/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/1.png -------------------------------------------------------------------------------- /example/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/2.png -------------------------------------------------------------------------------- /example/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/3.png -------------------------------------------------------------------------------- /example/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/4.png -------------------------------------------------------------------------------- /example/assets/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/burger.png -------------------------------------------------------------------------------- /example/assets/jaime_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/jaime_logo.png -------------------------------------------------------------------------------- /example/assets/logo-gskinner-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/logo-gskinner-white.png -------------------------------------------------------------------------------- /example/assets/logo-gskinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/assets/logo-gskinner.png -------------------------------------------------------------------------------- /example/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/firebase.json -------------------------------------------------------------------------------- /example/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/image.png -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/apps/apps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/apps/apps.dart -------------------------------------------------------------------------------- /example/lib/apps/gskinner_apps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/apps/gskinner_apps.dart -------------------------------------------------------------------------------- /example/lib/apps/nike_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/apps/nike_app.dart -------------------------------------------------------------------------------- /example/lib/indicator/effects/expanding_dots_effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/indicator/effects/expanding_dots_effect.dart -------------------------------------------------------------------------------- /example/lib/indicator/effects/indicator_effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/indicator/effects/indicator_effect.dart -------------------------------------------------------------------------------- /example/lib/indicator/painters/expanding_dots_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/indicator/painters/expanding_dots_painter.dart -------------------------------------------------------------------------------- /example/lib/indicator/painters/indicator_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/indicator/painters/indicator_painter.dart -------------------------------------------------------------------------------- /example/lib/indicator/smooth_page_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/indicator/smooth_page_indicator.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Podfile -------------------------------------------------------------------------------- /example/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Podfile.lock -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/flutter_showcase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/flutter_showcase.dart -------------------------------------------------------------------------------- /lib/src/core/template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/core/template.dart -------------------------------------------------------------------------------- /lib/src/core/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/core/theme.dart -------------------------------------------------------------------------------- /lib/src/frame/frame.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/frame/frame.dart -------------------------------------------------------------------------------- /lib/src/frame/frame_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/frame/frame_theme.dart -------------------------------------------------------------------------------- /lib/src/showcase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/showcase.dart -------------------------------------------------------------------------------- /lib/src/templates/simple_template.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/templates/simple_template.dart -------------------------------------------------------------------------------- /lib/src/templates/templates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/lib/src/templates/templates.dart -------------------------------------------------------------------------------- /mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/mobile.png -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/preview.gif -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/flutter_showcase_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesblasco/flutter_showcase/HEAD/test/flutter_showcase_test.dart --------------------------------------------------------------------------------