├── .gitignore ├── LICENSE ├── README.md ├── examples ├── all_tabbar_models │ ├── constants.dart │ ├── indicators.dart │ └── main.dart ├── animated_drawer.dart ├── animated_splash_screen.dart ├── animated_theme │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── animated_theme │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── 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-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── 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 │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ │ └── RunnerTests │ │ │ └── RunnerTests.swift │ ├── lib │ │ ├── home │ │ │ ├── home_view.dart │ │ │ └── widget │ │ │ │ └── change_quantity_of_product.dart │ │ ├── main.dart │ │ └── theme │ │ │ └── app_theme.dart │ └── pubspec.yaml ├── animation_example.dart ├── app_custom_scrollview.dart ├── bottom_app_bar │ ├── controller │ │ └── main_wrapper_controller.dart │ ├── main.dart │ ├── main_wrapper.dart │ ├── utils │ │ ├── color_constants.dart │ │ └── themes.dart │ └── view │ │ ├── cart_tab.dart │ │ ├── home_tab.dart │ │ ├── profile_tab.dart │ │ └── statistics_tab.dart ├── count_down_timer.dart ├── custom_tab_bar.dart ├── date_range_picker.dart ├── dynamic_checkboxes.dart ├── flutter_accordions.dart ├── flutter_multiselect.dart ├── flutter_otp_verification_screen.dart ├── got │ ├── main.dart │ ├── page.dart │ └── screen.dart ├── happiness_app.dart ├── highlight_selected_items_listview.dart ├── ios_pull_down_menu.dart ├── password_cheker.dart ├── password_strength_checker.dart ├── quick_alert_example.dart ├── reactive_form.dart ├── real_estate_app.dart ├── rps_game.dart ├── searchable_listview.dart ├── simple_tic_tac_toe_game.dart ├── sortable_listView.dart ├── sqlite_crud_example │ ├── helper.dart │ └── main.dart └── stepper_widget.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/README.md -------------------------------------------------------------------------------- /examples/all_tabbar_models/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/all_tabbar_models/constants.dart -------------------------------------------------------------------------------- /examples/all_tabbar_models/indicators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/all_tabbar_models/indicators.dart -------------------------------------------------------------------------------- /examples/all_tabbar_models/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/all_tabbar_models/main.dart -------------------------------------------------------------------------------- /examples/animated_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_drawer.dart -------------------------------------------------------------------------------- /examples/animated_splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_splash_screen.dart -------------------------------------------------------------------------------- /examples/animated_theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/.gitignore -------------------------------------------------------------------------------- /examples/animated_theme/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/.vscode/settings.json -------------------------------------------------------------------------------- /examples/animated_theme/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/.gitignore -------------------------------------------------------------------------------- /examples/animated_theme/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/build.gradle -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/kotlin/com/example/animated_theme/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/kotlin/com/example/animated_theme/MainActivity.kt -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/animated_theme/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/build.gradle -------------------------------------------------------------------------------- /examples/animated_theme/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/gradle.properties -------------------------------------------------------------------------------- /examples/animated_theme/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/animated_theme/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/android/settings.gradle -------------------------------------------------------------------------------- /examples/animated_theme/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/.gitignore -------------------------------------------------------------------------------- /examples/animated_theme/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /examples/animated_theme/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/animated_theme/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/Runner/Info.plist -------------------------------------------------------------------------------- /examples/animated_theme/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /examples/animated_theme/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /examples/animated_theme/lib/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/lib/home/home_view.dart -------------------------------------------------------------------------------- /examples/animated_theme/lib/home/widget/change_quantity_of_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/lib/home/widget/change_quantity_of_product.dart -------------------------------------------------------------------------------- /examples/animated_theme/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/lib/main.dart -------------------------------------------------------------------------------- /examples/animated_theme/lib/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/lib/theme/app_theme.dart -------------------------------------------------------------------------------- /examples/animated_theme/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animated_theme/pubspec.yaml -------------------------------------------------------------------------------- /examples/animation_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/animation_example.dart -------------------------------------------------------------------------------- /examples/app_custom_scrollview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/app_custom_scrollview.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/controller/main_wrapper_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/controller/main_wrapper_controller.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/main.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/main_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/main_wrapper.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/utils/color_constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/utils/color_constants.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/utils/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/utils/themes.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/view/cart_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/view/cart_tab.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/view/home_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/view/home_tab.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/view/profile_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/view/profile_tab.dart -------------------------------------------------------------------------------- /examples/bottom_app_bar/view/statistics_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/bottom_app_bar/view/statistics_tab.dart -------------------------------------------------------------------------------- /examples/count_down_timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/count_down_timer.dart -------------------------------------------------------------------------------- /examples/custom_tab_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/custom_tab_bar.dart -------------------------------------------------------------------------------- /examples/date_range_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/date_range_picker.dart -------------------------------------------------------------------------------- /examples/dynamic_checkboxes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/dynamic_checkboxes.dart -------------------------------------------------------------------------------- /examples/flutter_accordions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/flutter_accordions.dart -------------------------------------------------------------------------------- /examples/flutter_multiselect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/flutter_multiselect.dart -------------------------------------------------------------------------------- /examples/flutter_otp_verification_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/flutter_otp_verification_screen.dart -------------------------------------------------------------------------------- /examples/got/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/got/main.dart -------------------------------------------------------------------------------- /examples/got/page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/got/page.dart -------------------------------------------------------------------------------- /examples/got/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/got/screen.dart -------------------------------------------------------------------------------- /examples/happiness_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/happiness_app.dart -------------------------------------------------------------------------------- /examples/highlight_selected_items_listview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/highlight_selected_items_listview.dart -------------------------------------------------------------------------------- /examples/ios_pull_down_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/ios_pull_down_menu.dart -------------------------------------------------------------------------------- /examples/password_cheker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/password_cheker.dart -------------------------------------------------------------------------------- /examples/password_strength_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/password_strength_checker.dart -------------------------------------------------------------------------------- /examples/quick_alert_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/quick_alert_example.dart -------------------------------------------------------------------------------- /examples/reactive_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/reactive_form.dart -------------------------------------------------------------------------------- /examples/real_estate_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/real_estate_app.dart -------------------------------------------------------------------------------- /examples/rps_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/rps_game.dart -------------------------------------------------------------------------------- /examples/searchable_listview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/searchable_listview.dart -------------------------------------------------------------------------------- /examples/simple_tic_tac_toe_game.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/simple_tic_tac_toe_game.dart -------------------------------------------------------------------------------- /examples/sortable_listView.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/sortable_listView.dart -------------------------------------------------------------------------------- /examples/sqlite_crud_example/helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/sqlite_crud_example/helper.dart -------------------------------------------------------------------------------- /examples/sqlite_crud_example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/sqlite_crud_example/main.dart -------------------------------------------------------------------------------- /examples/stepper_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/examples/stepper_widget.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirBayat0/Flutter_examples/HEAD/pubspec.yaml --------------------------------------------------------------------------------