├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── assets ├── 1.png ├── 2.png ├── 3.png └── product_view.gif ├── example ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── example │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-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 │ ├── facebook.png │ ├── instagram.png │ ├── placeholder.png │ └── twitter.png ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ ├── main.dart │ └── screen │ │ ├── achievement_banner_page.dart │ │ ├── button_page.dart │ │ ├── feature_page.dart │ │ ├── footer_page.dart │ │ ├── gridview_page.dart │ │ ├── heroes_page.dart │ │ ├── home_page.dart │ │ ├── nav_bar_screen.dart │ │ ├── parallax_page.dart │ │ └── tag_page.dart ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test │ └── widget_test.dart ├── web │ ├── favicon.png │ ├── icons │ │ ├── Icon-192.png │ │ ├── Icon-512.png │ │ ├── Icon-maskable-192.png │ │ └── Icon-maskable-512.png │ ├── index.html │ └── manifest.json └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h ├── lib ├── achievement_banner │ ├── achievement_banner_1 │ │ ├── achievement_banner_1.dart │ │ ├── achievement_banner_1_mobile.dart │ │ ├── achievement_banner_1_tablet.dart │ │ └── achievement_banner_1_web.dart │ ├── achievement_banner_2 │ │ ├── achievement_banner_2.dart │ │ ├── achievement_banner_2_mobile.dart │ │ ├── achievement_banner_2_tablet.dart │ │ └── achievement_banner_2_web.dart │ └── model │ │ └── achievement_model.dart ├── button │ ├── button_1 │ │ ├── button_1.dart │ │ ├── button_1_alt.dart │ │ ├── button_1_neg.dart │ │ └── button_1_round.dart │ └── button_2 │ │ ├── button_2.dart │ │ ├── button_2_alt.dart │ │ ├── button_2_neg.dart │ │ └── button_2_round.dart ├── feature │ ├── feature_1 │ │ ├── feature_1.dart │ │ ├── feature_1_mobile.dart │ │ ├── feature_1_tab.dart │ │ ├── feature_1_web.dart │ │ └── feature_item.dart │ └── feature_2 │ │ ├── feature_2.dart │ │ ├── feature_2_mobile.dart │ │ ├── feature_2_tab.dart │ │ ├── feature_2_web.dart │ │ └── feature_item_2.dart ├── flutter_web_base.dart ├── footer │ ├── footer.dart │ ├── footer_1 │ │ ├── footer_1.dart │ │ ├── footer_1_mobile.dart │ │ ├── footer_1_tab.dart │ │ └── footer_1_web.dart │ ├── footer_2 │ │ ├── footer_2.dart │ │ ├── footer_2_mobile.dart │ │ ├── footer_2_tab.dart │ │ └── footer_2_web.dart │ ├── footer_3 │ │ ├── footer_3.dart │ │ ├── footer_3_mobile.dart │ │ ├── footer_3_tab.dart │ │ └── footer_3_web.dart │ ├── footer_4 │ │ ├── footer_4.dart │ │ ├── footer_4_mobile.dart │ │ ├── footer_4_tab.dart │ │ └── footer_4_web.dart │ └── footer_5 │ │ ├── footer_5.dart │ │ ├── footer_5_mobile.dart │ │ ├── footer_5_tab.dart │ │ └── footer_5_web.dart ├── grid_view │ ├── grid_view.dart │ ├── grid_view_1 │ │ ├── grid_view_1.dart │ │ ├── grid_view_1_mobile.dart │ │ ├── grid_view_1_tab.dart │ │ └── grid_view_1_web.dart │ └── model │ │ └── grid_view_model.dart ├── heroes │ ├── heroe_1 │ │ ├── heroe_1.dart │ │ ├── heroe_1_mobile.dart │ │ ├── heroe_1_tab.dart │ │ └── heroe_1_web.dart │ ├── heroe_2 │ │ ├── heroe_2.dart │ │ ├── heroe_2_mobile.dart │ │ ├── heroe_2_tab.dart │ │ └── heroe_2_web.dart │ └── heroe_3 │ │ ├── heroe_3.dart │ │ ├── heroe_3_mobile.dart │ │ ├── heroe_3_tab.dart │ │ └── heroe_3_web.dart ├── nav_bar │ ├── nav_bar_1 │ │ ├── nav_bar_1.dart │ │ ├── nav_bar_1_mobile.dart │ │ ├── nav_bar_1_tab.dart │ │ └── nav_bar_1_web.dart │ ├── nav_bar_2 │ │ ├── nav_bar_2.dart │ │ ├── nav_bar_2_mobile.dart │ │ ├── nav_bar_2_tab.dart │ │ └── nav_bar_2_web.dart │ └── nav_bar_3 │ │ ├── nav_bar_3.dart │ │ ├── nav_bar_3_mobile.dart │ │ ├── nav_bar_3_tab.dart │ │ └── nav_bar_3_web.dart ├── parallax_effect │ ├── model │ │ └── parallax_model.dart │ ├── parallax.dart │ ├── parallax_mobile.dart │ ├── parallax_tab.dart │ └── parallax_web.dart ├── tags │ ├── border_tag │ │ ├── border_tag.dart │ │ └── border_tag_with_icon.dart │ ├── non_border_tag │ │ ├── no_border_tag.dart │ │ └── no_border_tag_with_icon.dart │ └── utils │ │ └── tag_utils.dart └── utils │ └── enum.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/product_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/assets/product_view.gif -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/README.md -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/kotlin/com/example/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/kotlin/com/example/example/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/assets/facebook.png -------------------------------------------------------------------------------- /example/assets/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/assets/instagram.png -------------------------------------------------------------------------------- /example/assets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/assets/placeholder.png -------------------------------------------------------------------------------- /example/assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/assets/twitter.png -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/screen/achievement_banner_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/achievement_banner_page.dart -------------------------------------------------------------------------------- /example/lib/screen/button_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/button_page.dart -------------------------------------------------------------------------------- /example/lib/screen/feature_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/feature_page.dart -------------------------------------------------------------------------------- /example/lib/screen/footer_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/footer_page.dart -------------------------------------------------------------------------------- /example/lib/screen/gridview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/gridview_page.dart -------------------------------------------------------------------------------- /example/lib/screen/heroes_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/heroes_page.dart -------------------------------------------------------------------------------- /example/lib/screen/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/home_page.dart -------------------------------------------------------------------------------- /example/lib/screen/nav_bar_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/nav_bar_screen.dart -------------------------------------------------------------------------------- /example/lib/screen/parallax_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/parallax_page.dart -------------------------------------------------------------------------------- /example/lib/screen/tag_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/lib/screen/tag_page.dart -------------------------------------------------------------------------------- /example/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /example/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/main.cc -------------------------------------------------------------------------------- /example/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/my_application.cc -------------------------------------------------------------------------------- /example/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/linux/my_application.h -------------------------------------------------------------------------------- /example/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/.gitignore -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /example/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /example/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /example/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /example/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Info.plist -------------------------------------------------------------------------------- /example/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /example/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/pubspec.lock -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/.gitignore -------------------------------------------------------------------------------- /example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/resource.h -------------------------------------------------------------------------------- /example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/utils.h -------------------------------------------------------------------------------- /example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_1/achievement_banner_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_1/achievement_banner_1.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_1/achievement_banner_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_1/achievement_banner_1_mobile.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_1/achievement_banner_1_tablet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_1/achievement_banner_1_tablet.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_1/achievement_banner_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_1/achievement_banner_1_web.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_2/achievement_banner_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_2/achievement_banner_2.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_2/achievement_banner_2_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_2/achievement_banner_2_mobile.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_2/achievement_banner_2_tablet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_2/achievement_banner_2_tablet.dart -------------------------------------------------------------------------------- /lib/achievement_banner/achievement_banner_2/achievement_banner_2_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/achievement_banner_2/achievement_banner_2_web.dart -------------------------------------------------------------------------------- /lib/achievement_banner/model/achievement_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/achievement_banner/model/achievement_model.dart -------------------------------------------------------------------------------- /lib/button/button_1/button_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_1/button_1.dart -------------------------------------------------------------------------------- /lib/button/button_1/button_1_alt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_1/button_1_alt.dart -------------------------------------------------------------------------------- /lib/button/button_1/button_1_neg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_1/button_1_neg.dart -------------------------------------------------------------------------------- /lib/button/button_1/button_1_round.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_1/button_1_round.dart -------------------------------------------------------------------------------- /lib/button/button_2/button_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_2/button_2.dart -------------------------------------------------------------------------------- /lib/button/button_2/button_2_alt.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_2/button_2_alt.dart -------------------------------------------------------------------------------- /lib/button/button_2/button_2_neg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_2/button_2_neg.dart -------------------------------------------------------------------------------- /lib/button/button_2/button_2_round.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/button/button_2/button_2_round.dart -------------------------------------------------------------------------------- /lib/feature/feature_1/feature_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_1/feature_1.dart -------------------------------------------------------------------------------- /lib/feature/feature_1/feature_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_1/feature_1_mobile.dart -------------------------------------------------------------------------------- /lib/feature/feature_1/feature_1_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_1/feature_1_tab.dart -------------------------------------------------------------------------------- /lib/feature/feature_1/feature_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_1/feature_1_web.dart -------------------------------------------------------------------------------- /lib/feature/feature_1/feature_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_1/feature_item.dart -------------------------------------------------------------------------------- /lib/feature/feature_2/feature_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_2/feature_2.dart -------------------------------------------------------------------------------- /lib/feature/feature_2/feature_2_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_2/feature_2_mobile.dart -------------------------------------------------------------------------------- /lib/feature/feature_2/feature_2_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_2/feature_2_tab.dart -------------------------------------------------------------------------------- /lib/feature/feature_2/feature_2_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_2/feature_2_web.dart -------------------------------------------------------------------------------- /lib/feature/feature_2/feature_item_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/feature/feature_2/feature_item_2.dart -------------------------------------------------------------------------------- /lib/flutter_web_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/flutter_web_base.dart -------------------------------------------------------------------------------- /lib/footer/footer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer.dart -------------------------------------------------------------------------------- /lib/footer/footer_1/footer_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_1/footer_1.dart -------------------------------------------------------------------------------- /lib/footer/footer_1/footer_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_1/footer_1_mobile.dart -------------------------------------------------------------------------------- /lib/footer/footer_1/footer_1_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_1/footer_1_tab.dart -------------------------------------------------------------------------------- /lib/footer/footer_1/footer_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_1/footer_1_web.dart -------------------------------------------------------------------------------- /lib/footer/footer_2/footer_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_2/footer_2.dart -------------------------------------------------------------------------------- /lib/footer/footer_2/footer_2_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_2/footer_2_mobile.dart -------------------------------------------------------------------------------- /lib/footer/footer_2/footer_2_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_2/footer_2_tab.dart -------------------------------------------------------------------------------- /lib/footer/footer_2/footer_2_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_2/footer_2_web.dart -------------------------------------------------------------------------------- /lib/footer/footer_3/footer_3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_3/footer_3.dart -------------------------------------------------------------------------------- /lib/footer/footer_3/footer_3_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_3/footer_3_mobile.dart -------------------------------------------------------------------------------- /lib/footer/footer_3/footer_3_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_3/footer_3_tab.dart -------------------------------------------------------------------------------- /lib/footer/footer_3/footer_3_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_3/footer_3_web.dart -------------------------------------------------------------------------------- /lib/footer/footer_4/footer_4.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_4/footer_4.dart -------------------------------------------------------------------------------- /lib/footer/footer_4/footer_4_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_4/footer_4_mobile.dart -------------------------------------------------------------------------------- /lib/footer/footer_4/footer_4_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_4/footer_4_tab.dart -------------------------------------------------------------------------------- /lib/footer/footer_4/footer_4_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_4/footer_4_web.dart -------------------------------------------------------------------------------- /lib/footer/footer_5/footer_5.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_5/footer_5.dart -------------------------------------------------------------------------------- /lib/footer/footer_5/footer_5_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_5/footer_5_mobile.dart -------------------------------------------------------------------------------- /lib/footer/footer_5/footer_5_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_5/footer_5_tab.dart -------------------------------------------------------------------------------- /lib/footer/footer_5/footer_5_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/footer/footer_5/footer_5_web.dart -------------------------------------------------------------------------------- /lib/grid_view/grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/grid_view.dart -------------------------------------------------------------------------------- /lib/grid_view/grid_view_1/grid_view_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/grid_view_1/grid_view_1.dart -------------------------------------------------------------------------------- /lib/grid_view/grid_view_1/grid_view_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/grid_view_1/grid_view_1_mobile.dart -------------------------------------------------------------------------------- /lib/grid_view/grid_view_1/grid_view_1_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/grid_view_1/grid_view_1_tab.dart -------------------------------------------------------------------------------- /lib/grid_view/grid_view_1/grid_view_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/grid_view_1/grid_view_1_web.dart -------------------------------------------------------------------------------- /lib/grid_view/model/grid_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/grid_view/model/grid_view_model.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_1/heroe_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_1/heroe_1.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_1/heroe_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_1/heroe_1_mobile.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_1/heroe_1_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_1/heroe_1_tab.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_1/heroe_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_1/heroe_1_web.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_2/heroe_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_2/heroe_2.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_2/heroe_2_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_2/heroe_2_mobile.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_2/heroe_2_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_2/heroe_2_tab.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_2/heroe_2_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_2/heroe_2_web.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_3/heroe_3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_3/heroe_3.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_3/heroe_3_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_3/heroe_3_mobile.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_3/heroe_3_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_3/heroe_3_tab.dart -------------------------------------------------------------------------------- /lib/heroes/heroe_3/heroe_3_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/heroes/heroe_3/heroe_3_web.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_1/nav_bar_1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_1/nav_bar_1.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_1/nav_bar_1_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_1/nav_bar_1_mobile.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_1/nav_bar_1_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_1/nav_bar_1_tab.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_1/nav_bar_1_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_1/nav_bar_1_web.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_2/nav_bar_2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_2/nav_bar_2.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_2/nav_bar_2_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_2/nav_bar_2_mobile.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_2/nav_bar_2_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_2/nav_bar_2_tab.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_2/nav_bar_2_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_2/nav_bar_2_web.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_3/nav_bar_3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_3/nav_bar_3.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_3/nav_bar_3_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_3/nav_bar_3_mobile.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_3/nav_bar_3_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_3/nav_bar_3_tab.dart -------------------------------------------------------------------------------- /lib/nav_bar/nav_bar_3/nav_bar_3_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/nav_bar/nav_bar_3/nav_bar_3_web.dart -------------------------------------------------------------------------------- /lib/parallax_effect/model/parallax_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/parallax_effect/model/parallax_model.dart -------------------------------------------------------------------------------- /lib/parallax_effect/parallax.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/parallax_effect/parallax.dart -------------------------------------------------------------------------------- /lib/parallax_effect/parallax_mobile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/parallax_effect/parallax_mobile.dart -------------------------------------------------------------------------------- /lib/parallax_effect/parallax_tab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/parallax_effect/parallax_tab.dart -------------------------------------------------------------------------------- /lib/parallax_effect/parallax_web.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/parallax_effect/parallax_web.dart -------------------------------------------------------------------------------- /lib/tags/border_tag/border_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/tags/border_tag/border_tag.dart -------------------------------------------------------------------------------- /lib/tags/border_tag/border_tag_with_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/tags/border_tag/border_tag_with_icon.dart -------------------------------------------------------------------------------- /lib/tags/non_border_tag/no_border_tag.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/tags/non_border_tag/no_border_tag.dart -------------------------------------------------------------------------------- /lib/tags/non_border_tag/no_border_tag_with_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/tags/non_border_tag/no_border_tag_with_icon.dart -------------------------------------------------------------------------------- /lib/tags/utils/tag_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/tags/utils/tag_utils.dart -------------------------------------------------------------------------------- /lib/utils/enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/lib/utils/enum.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanmoy27112000/flutter_web_base/HEAD/pubspec.yaml --------------------------------------------------------------------------------