├── .gitignore ├── .metadata ├── 001-theme-switch-with-provider ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── ulusoyapps │ │ │ │ │ └── sharewhatyouknow │ │ │ │ │ └── theme_switch_with_providers │ │ │ │ │ └── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── 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 ├── lib │ ├── main.dart │ ├── resources │ │ ├── colors │ │ │ ├── app_colors.dart │ │ │ ├── ata_colors.dart │ │ │ ├── biohack_colors.dart │ │ │ ├── codeland_colors.dart │ │ │ └── company_colors.dart │ │ ├── icon │ │ │ ├── ata_icons.dart │ │ │ ├── biohack_icons.dart │ │ │ ├── codeland_icons.dart │ │ │ └── company_icons.dart │ │ ├── shape │ │ │ ├── ata_shapes.dart │ │ │ ├── biohack_shapes.dart │ │ │ ├── codeland_shapes.dart │ │ │ └── company_shapes.dart │ │ ├── strings │ │ │ └── app_strings.dart │ │ └── themes │ │ │ ├── company_name.dart │ │ │ ├── company_theme.dart │ │ │ ├── text │ │ │ ├── ata_text_theme.dart │ │ │ ├── biohack_text_theme.dart │ │ │ ├── codeland_text_theme.dart │ │ │ └── company_text_theme.dart │ │ │ ├── theme_data │ │ │ ├── ata_theme_data.dart │ │ │ ├── biohack_theme_data.dart │ │ │ ├── codeland_theme_data.dart │ │ │ └── company_theme_data.dart │ │ │ └── theme_view_model.dart │ └── widgets │ │ ├── bar_chart_legend.dart │ │ ├── click_counter.dart │ │ ├── company_selection.dart │ │ ├── contained_input_chip.dart │ │ ├── pie_chart_legend.dart │ │ ├── sample_bar_chart.dart │ │ ├── sample_pie_chart.dart │ │ └── theme_switch_bottom_app_bar.dart ├── pubspec.lock └── pubspec.yaml ├── 002-navigator2 ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── ulusoyapps │ │ │ │ │ └── sharewhatyouknow │ │ │ │ │ └── navigator_2 │ │ │ │ │ └── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── 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 ├── lib │ ├── 002-01-mobile-only │ │ ├── color_screen_01.dart │ │ ├── home_screen_01.dart │ │ ├── main_002_01.dart │ │ ├── router │ │ │ ├── my_app_router_delegate_01.dart │ │ │ └── pages │ │ │ │ ├── color_page_01.dart │ │ │ │ ├── home_page_01.dart │ │ │ │ └── shape_page_01.dart │ │ └── shape_screen_01.dart │ ├── 002-02-mobile-only-with-auth │ │ ├── color_screen_02.dart │ │ ├── home_screen_02.dart │ │ ├── login_screen_02.dart │ │ ├── main_002_02.dart │ │ ├── router │ │ │ ├── my_app_router_delegate_02.dart │ │ │ └── pages │ │ │ │ ├── color_page_02.dart │ │ │ │ ├── home_page_02.dart │ │ │ │ ├── login_page_02.dart │ │ │ │ ├── shape_page_02.dart │ │ │ │ └── splash_page_02.dart │ │ ├── shape_screen_02.dart │ │ ├── splash_screen_02.dart │ │ └── widgets │ │ │ └── logout_fab_02.dart │ ├── 002-03-mobile-only-with-auth-and-bootstrap │ │ ├── color_screen_03.dart │ │ ├── home_screen_03.dart │ │ ├── login_screen_03.dart │ │ ├── main_002_03.dart │ │ ├── router │ │ │ ├── my_app_router_delegate_03.dart │ │ │ └── pages │ │ │ │ ├── color_page_03.dart │ │ │ │ ├── home_page_03.dart │ │ │ │ ├── login_page_03.dart │ │ │ │ ├── shape_page_03.dart │ │ │ │ └── splash_page_03.dart │ │ ├── shape_screen_03.dart │ │ ├── splash_screen_03.dart │ │ └── widgets │ │ │ └── logout_fab_03.dart │ ├── 002-04-mobile-and-web-with-auth-and-bootstrap │ │ ├── color_screen_04.dart │ │ ├── configure_nonweb.dart │ │ ├── configure_web.dart │ │ ├── home_screen_04.dart │ │ ├── login_screen_04.dart │ │ ├── main_002_04.dart │ │ ├── router │ │ │ ├── my_app_configuration.dart │ │ │ ├── my_app_route_information_parser_04.dart │ │ │ ├── my_app_router_delegate_04.dart │ │ │ └── pages │ │ │ │ ├── color_page_04.dart │ │ │ │ ├── home_page_04.dart │ │ │ │ ├── login_page_04.dart │ │ │ │ ├── shape_page_04.dart │ │ │ │ ├── splash_page_04.dart │ │ │ │ └── unknown_page_04.dart │ │ ├── shape_screen_04.dart │ │ ├── splash_screen_04.dart │ │ ├── unknown_screen_04.dart │ │ └── widgets │ │ │ ├── app_bar_back_button.dart │ │ │ └── logout_fab_04.dart │ ├── data │ │ ├── auth_repository.dart │ │ └── colors_repository.dart │ ├── viewmodels │ │ ├── auth_view_model.dart │ │ └── colors_view_model.dart │ └── widgets │ │ ├── color_gridview.dart │ │ ├── in_progress_message.dart │ │ ├── shape_border_gridview.dart │ │ └── shaped_button.dart ├── pubspec.lock └── pubspec.yaml ├── 003-single-page-scrollable-website ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── single_page_scrollable_website │ │ │ │ │ └── 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 │ ├── Podfile │ ├── Podfile.lock │ ├── 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 ├── lib │ ├── 003-01-scroll-to-position │ │ ├── color_sections_01.dart │ │ ├── home_screen_01.dart │ │ ├── main_003_01.dart │ │ ├── router │ │ │ ├── single_page_app_configuration_01.dart │ │ │ ├── single_page_app_route_information_parser_01.dart │ │ │ └── single_page_app_router_delegate_01.dart │ │ └── shape_border_listview_01.dart │ ├── 003-02-scroll-to-page │ │ ├── color_sections_02.dart │ │ ├── home_screen_02.dart │ │ ├── main_003_02.dart │ │ ├── router │ │ │ ├── single_page_app_configuration_02.dart │ │ │ ├── single_page_app_route_information_parser_02.dart │ │ │ └── single_page_app_router_delegate_02.dart │ │ └── shape_border_listview_02.dart │ ├── 003-03-ensure-visible │ │ ├── color_sections_03.dart │ │ ├── home_screen_03.dart │ │ ├── main_003_03.dart │ │ ├── router │ │ │ ├── single_page_app_configuration_03.dart │ │ │ ├── single_page_app_route_information_parser_03.dart │ │ │ └── single_page_app_router_delegate_03.dart │ │ └── shape_border_listview_03.dart │ ├── 003-04-scroll-to-index │ │ ├── color_sections_04.dart │ │ ├── home_screen_04.dart │ │ ├── main_003_04.dart │ │ ├── router │ │ │ ├── single_page_app_configuration_04.dart │ │ │ ├── single_page_app_route_information_parser_04.dart │ │ │ └── single_page_app_router_delegate_04.dart │ │ └── shape_border_listview_04.dart │ ├── 003-05-query-params │ │ ├── color_sections_05.dart │ │ ├── home_screen_05.dart │ │ ├── main_003_05.dart │ │ ├── router │ │ │ ├── single_page_app_configuration_05.dart │ │ │ ├── single_page_app_route_information_parser_05.dart │ │ │ └── single_page_app_router_delegate_05.dart │ │ └── shape_border_listview_05.dart │ ├── configure_nonweb.dart │ ├── configure_web.dart │ ├── entity │ │ └── color_code.dart │ └── widgets │ │ ├── app_bar_back_button.dart │ │ ├── color_section_title.dart │ │ ├── lorem_text.dart │ │ ├── navigation_menu_button.dart │ │ ├── shape_dialog.dart │ │ ├── shaped_button.dart │ │ ├── side_navigation_menu.dart │ │ ├── top_navigation_menu.dart │ │ └── unknown_screen.dart ├── pubspec.lock └── pubspec.yaml ├── 004-multi-page-scrollable-bottomsheet └── multi_page_scrollable_bottom_sheet │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── multi_page_scrollable_bottom_sheet │ │ │ │ │ └── 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 │ ├── assets │ ├── cats_meme_0.png │ ├── cats_meme_1.png │ ├── cats_meme_10.png │ ├── cats_meme_11.png │ ├── cats_meme_2.png │ ├── cats_meme_3.png │ ├── cats_meme_4.png │ ├── cats_meme_5.png │ ├── cats_meme_6.png │ ├── cats_meme_7.png │ ├── cats_meme_8.png │ ├── cats_meme_9.png │ ├── home_meme_1.png │ ├── home_meme_2.png │ ├── home_meme_3.png │ ├── home_meme_4.png │ └── home_meme_5.png │ ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── 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 │ ├── lib │ ├── home_screen.dart │ ├── main_for_pagination_motion.dart │ ├── main_for_scroll_motion.dart │ ├── resources │ │ ├── colors │ │ │ └── app_colors.dart │ │ └── themes │ │ │ └── text_theme │ │ │ └── app_text_theme.dart │ └── widgets │ │ ├── buttons │ │ ├── back_button.dart │ │ ├── circular_button.dart │ │ ├── close_button.dart │ │ └── primary_button.dart │ │ ├── pages_for_pagination_motion │ │ ├── meme_bottom_sheet_first_page_content.dart │ │ ├── meme_bottom_sheet_pages.dart │ │ ├── meme_bottom_sheet_second_page_content.dart │ │ └── meme_bottom_sheet_third_page_content.dart │ │ ├── pages_for_scroll_motion │ │ ├── meme_bottom_sheet_page_without_hero.dart │ │ └── meme_bottom_sheet_pages_scroll_motion.dart │ │ └── scrollablebottomsheet │ │ ├── current │ │ ├── current_action_button_animated_builder.dart │ │ ├── current_main_content_animated_builder.dart │ │ └── current_top_bar_widgets_animated_builder.dart │ │ ├── outgoing │ │ ├── outgoing_action_button_animated_builder.dart │ │ ├── outgoing_main_content_animated_builder.dart │ │ └── outgoing_top_bar_widgets_animated_builder.dart │ │ ├── scrollable_bottom_sheet.dart │ │ ├── scrollable_bottom_sheet_action_button.dart │ │ ├── scrollable_bottom_sheet_container.dart │ │ ├── scrollable_bottom_sheet_handler.dart │ │ ├── scrollable_bottom_sheet_hero_image.dart │ │ ├── scrollable_bottom_sheet_main_content.dart │ │ ├── scrollable_bottom_sheet_page.dart │ │ ├── scrollable_bottom_sheet_skeleton.dart │ │ ├── scrollable_bottom_sheet_top_bar.dart │ │ └── transformation_utils.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ └── widgets │ │ └── scrollablebottomsheet │ │ └── transformation_utils.dart │ └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json ├── README.md ├── common ├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── lib │ ├── cache │ │ └── preference.dart │ ├── dimens │ │ └── app_dimens.dart │ ├── extensions │ │ ├── build_context_extensions.dart │ │ └── color_extensions.dart │ ├── model │ │ └── shape_border_type.dart │ └── widgets │ │ ├── app_bar_text.dart │ │ └── colored_text.dart ├── pubspec.lock └── pubspec.yaml └── screenshot ├── companies.png ├── nav2_01.gif ├── nav2_02.gif ├── nav2_03.gif ├── nav2_04.gif ├── singlePageWebsite_01.gif ├── singlePageWebsite_02.gif ├── singlePageWebsite_03.gif ├── singlePageWebsite_04.gif ├── singlePageWebsite_05.gif └── theme_switch_demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/.metadata -------------------------------------------------------------------------------- /001-theme-switch-with-provider/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/.gitignore -------------------------------------------------------------------------------- /001-theme-switch-with-provider/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/.metadata -------------------------------------------------------------------------------- /001-theme-switch-with-provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/README.md -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/.gitignore -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/build.gradle -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/kotlin/com/ulusoyapps/sharewhatyouknow/theme_switch_with_providers/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/kotlin/com/ulusoyapps/sharewhatyouknow/theme_switch_with_providers/MainActivity.kt -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/build.gradle -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/gradle.properties -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /001-theme-switch-with-provider/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/android/settings.gradle -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/.gitignore -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Podfile -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Podfile.lock -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/ios/Runner/Info.plist -------------------------------------------------------------------------------- /001-theme-switch-with-provider/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/main.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/colors/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/colors/app_colors.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/colors/ata_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/colors/ata_colors.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/colors/biohack_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/colors/biohack_colors.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/colors/codeland_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/colors/codeland_colors.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/colors/company_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/colors/company_colors.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/icon/ata_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/icon/ata_icons.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/icon/biohack_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/icon/biohack_icons.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/icon/codeland_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/icon/codeland_icons.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/icon/company_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/icon/company_icons.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/shape/ata_shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/shape/ata_shapes.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/shape/biohack_shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/shape/biohack_shapes.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/shape/codeland_shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/shape/codeland_shapes.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/shape/company_shapes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/shape/company_shapes.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/strings/app_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/strings/app_strings.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/company_name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/company_name.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/company_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/company_theme.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/text/ata_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/text/ata_text_theme.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/text/biohack_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/text/biohack_text_theme.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/text/codeland_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/text/codeland_text_theme.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/text/company_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/text/company_text_theme.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/theme_data/ata_theme_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/theme_data/ata_theme_data.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/theme_data/biohack_theme_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/theme_data/biohack_theme_data.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/theme_data/codeland_theme_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/theme_data/codeland_theme_data.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/theme_data/company_theme_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/theme_data/company_theme_data.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/resources/themes/theme_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/resources/themes/theme_view_model.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/bar_chart_legend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/bar_chart_legend.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/click_counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/click_counter.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/company_selection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/company_selection.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/contained_input_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/contained_input_chip.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/pie_chart_legend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/pie_chart_legend.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/sample_bar_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/sample_bar_chart.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/sample_pie_chart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/sample_pie_chart.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/lib/widgets/theme_switch_bottom_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/lib/widgets/theme_switch_bottom_app_bar.dart -------------------------------------------------------------------------------- /001-theme-switch-with-provider/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/pubspec.lock -------------------------------------------------------------------------------- /001-theme-switch-with-provider/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/001-theme-switch-with-provider/pubspec.yaml -------------------------------------------------------------------------------- /002-navigator2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/.gitignore -------------------------------------------------------------------------------- /002-navigator2/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/.metadata -------------------------------------------------------------------------------- /002-navigator2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/README.md -------------------------------------------------------------------------------- /002-navigator2/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/.gitignore -------------------------------------------------------------------------------- /002-navigator2/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/build.gradle -------------------------------------------------------------------------------- /002-navigator2/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/kotlin/com/ulusoyapps/sharewhatyouknow/navigator_2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/kotlin/com/ulusoyapps/sharewhatyouknow/navigator_2/MainActivity.kt -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /002-navigator2/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /002-navigator2/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/build.gradle -------------------------------------------------------------------------------- /002-navigator2/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/gradle.properties -------------------------------------------------------------------------------- /002-navigator2/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /002-navigator2/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/android/settings.gradle -------------------------------------------------------------------------------- /002-navigator2/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/.gitignore -------------------------------------------------------------------------------- /002-navigator2/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /002-navigator2/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /002-navigator2/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /002-navigator2/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Podfile -------------------------------------------------------------------------------- /002-navigator2/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Podfile.lock -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /002-navigator2/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/ios/Runner/Info.plist -------------------------------------------------------------------------------- /002-navigator2/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/color_screen_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/color_screen_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/home_screen_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/home_screen_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/main_002_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/main_002_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/router/my_app_router_delegate_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/router/my_app_router_delegate_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/router/pages/color_page_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/router/pages/color_page_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/router/pages/home_page_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/router/pages/home_page_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/router/pages/shape_page_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/router/pages/shape_page_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-01-mobile-only/shape_screen_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-01-mobile-only/shape_screen_01.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/color_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/color_screen_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/home_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/home_screen_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/login_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/login_screen_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/main_002_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/main_002_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/my_app_router_delegate_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/my_app_router_delegate_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/color_page_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/color_page_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/home_page_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/home_page_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/login_page_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/login_page_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/shape_page_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/shape_page_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/splash_page_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/router/pages/splash_page_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/shape_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/shape_screen_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/splash_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/splash_screen_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-02-mobile-only-with-auth/widgets/logout_fab_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-02-mobile-only-with-auth/widgets/logout_fab_02.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/color_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/color_screen_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/home_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/home_screen_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/login_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/login_screen_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/main_002_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/main_002_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/my_app_router_delegate_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/my_app_router_delegate_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/color_page_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/color_page_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/home_page_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/home_page_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/login_page_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/login_page_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/shape_page_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/shape_page_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/splash_page_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/router/pages/splash_page_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/shape_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/shape_screen_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/splash_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/splash_screen_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/widgets/logout_fab_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-03-mobile-only-with-auth-and-bootstrap/widgets/logout_fab_03.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/color_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/color_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/configure_nonweb.dart: -------------------------------------------------------------------------------- 1 | void configureApp() { 2 | // No-op. 3 | } 4 | -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/configure_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/configure_web.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/home_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/home_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/login_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/login_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/main_002_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/main_002_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_configuration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_configuration.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_route_information_parser_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_route_information_parser_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_router_delegate_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/my_app_router_delegate_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/color_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/color_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/home_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/home_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/login_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/login_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/shape_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/shape_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/splash_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/splash_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/unknown_page_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/router/pages/unknown_page_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/shape_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/shape_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/splash_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/splash_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/unknown_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/unknown_screen_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/widgets/app_bar_back_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/widgets/app_bar_back_button.dart -------------------------------------------------------------------------------- /002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/widgets/logout_fab_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/002-04-mobile-and-web-with-auth-and-bootstrap/widgets/logout_fab_04.dart -------------------------------------------------------------------------------- /002-navigator2/lib/data/auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/data/auth_repository.dart -------------------------------------------------------------------------------- /002-navigator2/lib/data/colors_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/data/colors_repository.dart -------------------------------------------------------------------------------- /002-navigator2/lib/viewmodels/auth_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/viewmodels/auth_view_model.dart -------------------------------------------------------------------------------- /002-navigator2/lib/viewmodels/colors_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/viewmodels/colors_view_model.dart -------------------------------------------------------------------------------- /002-navigator2/lib/widgets/color_gridview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/widgets/color_gridview.dart -------------------------------------------------------------------------------- /002-navigator2/lib/widgets/in_progress_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/widgets/in_progress_message.dart -------------------------------------------------------------------------------- /002-navigator2/lib/widgets/shape_border_gridview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/widgets/shape_border_gridview.dart -------------------------------------------------------------------------------- /002-navigator2/lib/widgets/shaped_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/lib/widgets/shaped_button.dart -------------------------------------------------------------------------------- /002-navigator2/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/pubspec.lock -------------------------------------------------------------------------------- /002-navigator2/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/002-navigator2/pubspec.yaml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/.gitignore -------------------------------------------------------------------------------- /003-single-page-scrollable-website/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/.metadata -------------------------------------------------------------------------------- /003-single-page-scrollable-website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/README.md -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/.gitignore -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/build.gradle -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/kotlin/com/example/single_page_scrollable_website/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/kotlin/com/example/single_page_scrollable_website/MainActivity.kt -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/build.gradle -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/gradle.properties -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /003-single-page-scrollable-website/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/android/settings.gradle -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/.gitignore -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Podfile -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Podfile.lock -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/ios/Runner/Info.plist -------------------------------------------------------------------------------- /003-single-page-scrollable-website/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/color_sections_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/color_sections_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/home_screen_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/home_screen_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/main_003_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/main_003_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_configuration_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_configuration_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_route_information_parser_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_route_information_parser_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_router_delegate_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/router/single_page_app_router_delegate_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-01-scroll-to-position/shape_border_listview_01.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-01-scroll-to-position/shape_border_listview_01.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/color_sections_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/color_sections_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/home_screen_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/home_screen_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/main_003_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/main_003_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_configuration_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_configuration_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_route_information_parser_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_route_information_parser_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_router_delegate_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/router/single_page_app_router_delegate_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-02-scroll-to-page/shape_border_listview_02.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-02-scroll-to-page/shape_border_listview_02.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/color_sections_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/color_sections_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/home_screen_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/home_screen_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/main_003_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/main_003_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_configuration_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_configuration_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_route_information_parser_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_route_information_parser_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_router_delegate_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/router/single_page_app_router_delegate_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-03-ensure-visible/shape_border_listview_03.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-03-ensure-visible/shape_border_listview_03.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/color_sections_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/color_sections_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/home_screen_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/home_screen_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/main_003_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/main_003_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_configuration_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_configuration_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_route_information_parser_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_route_information_parser_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_router_delegate_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/router/single_page_app_router_delegate_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-04-scroll-to-index/shape_border_listview_04.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-04-scroll-to-index/shape_border_listview_04.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/color_sections_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/color_sections_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/home_screen_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/home_screen_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/main_003_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/main_003_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_configuration_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_configuration_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_route_information_parser_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_route_information_parser_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_router_delegate_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/router/single_page_app_router_delegate_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/003-05-query-params/shape_border_listview_05.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/003-05-query-params/shape_border_listview_05.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/configure_nonweb.dart: -------------------------------------------------------------------------------- 1 | void configureApp() { 2 | // No-op. 3 | } 4 | -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/configure_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/configure_web.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/entity/color_code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/entity/color_code.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/app_bar_back_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/app_bar_back_button.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/color_section_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/color_section_title.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/lorem_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/lorem_text.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/navigation_menu_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/navigation_menu_button.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/shape_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/shape_dialog.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/shaped_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/shaped_button.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/side_navigation_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/side_navigation_menu.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/top_navigation_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/top_navigation_menu.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/lib/widgets/unknown_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/lib/widgets/unknown_screen.dart -------------------------------------------------------------------------------- /003-single-page-scrollable-website/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/pubspec.lock -------------------------------------------------------------------------------- /003-single-page-scrollable-website/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/003-single-page-scrollable-website/pubspec.yaml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/.gitignore -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/.metadata -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/README.md -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/analysis_options.yaml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/.gitignore -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/build.gradle -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/kotlin/com/example/multi_page_scrollable_bottom_sheet/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/kotlin/com/example/multi_page_scrollable_bottom_sheet/MainActivity.kt -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/build.gradle -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/gradle.properties -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/android/settings.gradle -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_0.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_1.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_10.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_11.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_2.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_3.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_4.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_5.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_6.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_7.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_8.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/cats_meme_9.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_1.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_2.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_3.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_4.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/assets/home_meme_5.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/.gitignore -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Podfile -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Podfile.lock -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Info.plist -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/home_screen.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/main_for_pagination_motion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/main_for_pagination_motion.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/main_for_scroll_motion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/main_for_scroll_motion.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/resources/colors/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/resources/colors/app_colors.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/resources/themes/text_theme/app_text_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/resources/themes/text_theme/app_text_theme.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/back_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/back_button.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/circular_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/circular_button.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/close_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/close_button.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/primary_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/buttons/primary_button.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_first_page_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_first_page_content.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_pages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_pages.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_second_page_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_second_page_content.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_third_page_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_pagination_motion/meme_bottom_sheet_third_page_content.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_scroll_motion/meme_bottom_sheet_page_without_hero.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_scroll_motion/meme_bottom_sheet_page_without_hero.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_scroll_motion/meme_bottom_sheet_pages_scroll_motion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/pages_for_scroll_motion/meme_bottom_sheet_pages_scroll_motion.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_action_button_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_action_button_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_main_content_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_main_content_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_top_bar_widgets_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/current/current_top_bar_widgets_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_action_button_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_action_button_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_main_content_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_main_content_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_top_bar_widgets_animated_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/outgoing/outgoing_top_bar_widgets_animated_builder.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_action_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_action_button.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_container.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_handler.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_hero_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_hero_image.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_main_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_main_content.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_page.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_skeleton.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_top_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/scrollable_bottom_sheet_top_bar.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/transformation_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/lib/widgets/scrollablebottomsheet/transformation_utils.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/pubspec.lock -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/pubspec.yaml -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/test/widgets/scrollablebottomsheet/transformation_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/test/widgets/scrollablebottomsheet/transformation_utils.dart -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/favicon.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-192.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-512.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/index.html -------------------------------------------------------------------------------- /004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/004-multi-page-scrollable-bottomsheet/multi_page_scrollable_bottom_sheet/web/manifest.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/README.md -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/.gitignore -------------------------------------------------------------------------------- /common/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/.metadata -------------------------------------------------------------------------------- /common/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/README.md -------------------------------------------------------------------------------- /common/lib/cache/preference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/cache/preference.dart -------------------------------------------------------------------------------- /common/lib/dimens/app_dimens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/dimens/app_dimens.dart -------------------------------------------------------------------------------- /common/lib/extensions/build_context_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/extensions/build_context_extensions.dart -------------------------------------------------------------------------------- /common/lib/extensions/color_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/extensions/color_extensions.dart -------------------------------------------------------------------------------- /common/lib/model/shape_border_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/model/shape_border_type.dart -------------------------------------------------------------------------------- /common/lib/widgets/app_bar_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/widgets/app_bar_text.dart -------------------------------------------------------------------------------- /common/lib/widgets/colored_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/lib/widgets/colored_text.dart -------------------------------------------------------------------------------- /common/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/pubspec.lock -------------------------------------------------------------------------------- /common/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/common/pubspec.yaml -------------------------------------------------------------------------------- /screenshot/companies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/companies.png -------------------------------------------------------------------------------- /screenshot/nav2_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/nav2_01.gif -------------------------------------------------------------------------------- /screenshot/nav2_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/nav2_02.gif -------------------------------------------------------------------------------- /screenshot/nav2_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/nav2_03.gif -------------------------------------------------------------------------------- /screenshot/nav2_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/nav2_04.gif -------------------------------------------------------------------------------- /screenshot/singlePageWebsite_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/singlePageWebsite_01.gif -------------------------------------------------------------------------------- /screenshot/singlePageWebsite_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/singlePageWebsite_02.gif -------------------------------------------------------------------------------- /screenshot/singlePageWebsite_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/singlePageWebsite_03.gif -------------------------------------------------------------------------------- /screenshot/singlePageWebsite_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/singlePageWebsite_04.gif -------------------------------------------------------------------------------- /screenshot/singlePageWebsite_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/singlePageWebsite_05.gif -------------------------------------------------------------------------------- /screenshot/theme_switch_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ulusoyca/Flutter-ShareWhatYouKnow/HEAD/screenshot/theme_switch_demo.gif --------------------------------------------------------------------------------