├── .gitignore ├── .metadata ├── LICENSE ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── harshbhavsar │ │ │ │ └── flutter_ui_collections │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── background_curve.png ├── feature_1.jpg ├── feature_2.jpg ├── feature_3.jpg ├── hall_1.jpg ├── hall_2.jpeg ├── icons │ ├── icn_coming_soon.png │ ├── icn_twitter.png │ ├── icnfb.png │ ├── icngmail.png │ ├── imgforgot.png │ └── logo_splash.png ├── onboard_1.png ├── onboard_2.png └── onboard_3.png ├── fonts ├── Exo2-Regular.ttf └── Exo2-SemiBold.ttf ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── 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 │ └── main.m ├── lib ├── LocalBindings.dart ├── main.dart ├── model │ ├── Property.dart │ ├── models.dart │ └── photos.dart ├── services │ ├── apilistener.dart │ ├── services.dart │ └── webservices.dart ├── ui │ ├── intro_page.dart │ ├── page_coming_soon.dart │ ├── page_forgotpass.dart │ ├── page_home.dart │ ├── page_login.dart │ ├── page_onboarding.dart │ ├── page_profile.dart │ ├── page_search.dart │ ├── page_settings.dart │ ├── page_signup.dart │ ├── page_splash.dart │ └── photo_list.dart ├── utils │ ├── Constants.dart │ ├── colors.dart │ ├── responsive_screen.dart │ ├── util.dart │ └── utils.dart └── widgets │ ├── bottom_curve_painter.dart │ ├── bottom_navigationBar.dart │ ├── boxfield.dart │ ├── carousol.dart │ ├── dots_indicator.dart │ ├── gradient_text.dart │ ├── progress_widget.dart │ ├── setting_section.dart │ ├── switch_row.dart │ ├── tabs_chips.dart │ ├── tile_row.dart │ ├── upper_curve_clipper.dart │ ├── utils_widget.dart │ ├── visibility.dart │ └── widgets.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── onboarding.gif ├── page_dashboard.jpg ├── page_forgot_password.jpg ├── page_login.jpg ├── page_onboarding_1.jpg ├── page_onboarding_2.jpg ├── page_onboarding_3.jpg ├── page_profile.jpg ├── page_settings.jpg ├── page_signup.jpg └── page_splash.jpg └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/.metadata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/harshbhavsar/flutter_ui_collections/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/java/com/harshbhavsar/flutter_ui_collections/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/background_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/background_curve.png -------------------------------------------------------------------------------- /assets/feature_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/feature_1.jpg -------------------------------------------------------------------------------- /assets/feature_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/feature_2.jpg -------------------------------------------------------------------------------- /assets/feature_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/feature_3.jpg -------------------------------------------------------------------------------- /assets/hall_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/hall_1.jpg -------------------------------------------------------------------------------- /assets/hall_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/hall_2.jpeg -------------------------------------------------------------------------------- /assets/icons/icn_coming_soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/icn_coming_soon.png -------------------------------------------------------------------------------- /assets/icons/icn_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/icn_twitter.png -------------------------------------------------------------------------------- /assets/icons/icnfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/icnfb.png -------------------------------------------------------------------------------- /assets/icons/icngmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/icngmail.png -------------------------------------------------------------------------------- /assets/icons/imgforgot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/imgforgot.png -------------------------------------------------------------------------------- /assets/icons/logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/icons/logo_splash.png -------------------------------------------------------------------------------- /assets/onboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/onboard_1.png -------------------------------------------------------------------------------- /assets/onboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/onboard_2.png -------------------------------------------------------------------------------- /assets/onboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/assets/onboard_3.png -------------------------------------------------------------------------------- /fonts/Exo2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/fonts/Exo2-Regular.ttf -------------------------------------------------------------------------------- /fonts/Exo2-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/fonts/Exo2-SemiBold.ttf -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/LocalBindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/LocalBindings.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/model/Property.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/model/Property.dart -------------------------------------------------------------------------------- /lib/model/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/model/models.dart -------------------------------------------------------------------------------- /lib/model/photos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/model/photos.dart -------------------------------------------------------------------------------- /lib/services/apilistener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/services/apilistener.dart -------------------------------------------------------------------------------- /lib/services/services.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/services/services.dart -------------------------------------------------------------------------------- /lib/services/webservices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/services/webservices.dart -------------------------------------------------------------------------------- /lib/ui/intro_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/intro_page.dart -------------------------------------------------------------------------------- /lib/ui/page_coming_soon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_coming_soon.dart -------------------------------------------------------------------------------- /lib/ui/page_forgotpass.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_forgotpass.dart -------------------------------------------------------------------------------- /lib/ui/page_home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_home.dart -------------------------------------------------------------------------------- /lib/ui/page_login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_login.dart -------------------------------------------------------------------------------- /lib/ui/page_onboarding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_onboarding.dart -------------------------------------------------------------------------------- /lib/ui/page_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_profile.dart -------------------------------------------------------------------------------- /lib/ui/page_search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_search.dart -------------------------------------------------------------------------------- /lib/ui/page_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_settings.dart -------------------------------------------------------------------------------- /lib/ui/page_signup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_signup.dart -------------------------------------------------------------------------------- /lib/ui/page_splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/page_splash.dart -------------------------------------------------------------------------------- /lib/ui/photo_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/ui/photo_list.dart -------------------------------------------------------------------------------- /lib/utils/Constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/utils/Constants.dart -------------------------------------------------------------------------------- /lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/utils/colors.dart -------------------------------------------------------------------------------- /lib/utils/responsive_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/utils/responsive_screen.dart -------------------------------------------------------------------------------- /lib/utils/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/utils/util.dart -------------------------------------------------------------------------------- /lib/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/utils/utils.dart -------------------------------------------------------------------------------- /lib/widgets/bottom_curve_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/bottom_curve_painter.dart -------------------------------------------------------------------------------- /lib/widgets/bottom_navigationBar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/bottom_navigationBar.dart -------------------------------------------------------------------------------- /lib/widgets/boxfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/boxfield.dart -------------------------------------------------------------------------------- /lib/widgets/carousol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/carousol.dart -------------------------------------------------------------------------------- /lib/widgets/dots_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/dots_indicator.dart -------------------------------------------------------------------------------- /lib/widgets/gradient_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/gradient_text.dart -------------------------------------------------------------------------------- /lib/widgets/progress_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/progress_widget.dart -------------------------------------------------------------------------------- /lib/widgets/setting_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/setting_section.dart -------------------------------------------------------------------------------- /lib/widgets/switch_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/switch_row.dart -------------------------------------------------------------------------------- /lib/widgets/tabs_chips.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/tabs_chips.dart -------------------------------------------------------------------------------- /lib/widgets/tile_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/tile_row.dart -------------------------------------------------------------------------------- /lib/widgets/upper_curve_clipper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/upper_curve_clipper.dart -------------------------------------------------------------------------------- /lib/widgets/utils_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/utils_widget.dart -------------------------------------------------------------------------------- /lib/widgets/visibility.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/visibility.dart -------------------------------------------------------------------------------- /lib/widgets/widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/lib/widgets/widgets.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/onboarding.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/onboarding.gif -------------------------------------------------------------------------------- /screenshots/page_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_dashboard.jpg -------------------------------------------------------------------------------- /screenshots/page_forgot_password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_forgot_password.jpg -------------------------------------------------------------------------------- /screenshots/page_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_login.jpg -------------------------------------------------------------------------------- /screenshots/page_onboarding_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_onboarding_1.jpg -------------------------------------------------------------------------------- /screenshots/page_onboarding_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_onboarding_2.jpg -------------------------------------------------------------------------------- /screenshots/page_onboarding_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_onboarding_3.jpg -------------------------------------------------------------------------------- /screenshots/page_profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_profile.jpg -------------------------------------------------------------------------------- /screenshots/page_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_settings.jpg -------------------------------------------------------------------------------- /screenshots/page_signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_signup.jpg -------------------------------------------------------------------------------- /screenshots/page_splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/screenshots/page_splash.jpg -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iharshb/flutter_ui_collection/HEAD/test/widget_test.dart --------------------------------------------------------------------------------