├── .github └── FUNDING.yml ├── Bill-Payments-Screen-UI ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── paymentsscreens │ │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── airtellogo.png │ ├── dart.jpg │ ├── kengenlogo.jpeg │ └── totallogo.jpg ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── screens │ │ ├── detail_screen.dart │ │ └── home_screen.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── Flight-App-Screens-UI ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flightappscreens │ │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── barcode.png │ ├── beach.jpg │ ├── macau.jpg │ ├── operahouse.jpg │ ├── people.jpeg │ └── worldmap.jpg ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── screens │ │ ├── flight_screen.dart │ │ ├── home_screen.dart │ │ ├── seat_screen.dart │ │ └── ticket_screen.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── Furniture-Screens-UI ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── uishoppingcart │ │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── Montserrat-Regular.ttf │ ├── Quicksand-Bold.ttf │ ├── Quicksand-Light.ttf │ ├── Quicksand-Medium.ttf │ ├── Quicksand-Regular.ttf │ ├── anotherchair.jpg │ ├── box.png │ ├── card.png │ ├── centerchair.jpg │ ├── chair.jpg │ ├── chris.jpg │ ├── desk.png │ ├── desks.png │ ├── drawer.jpg │ ├── dresser.png │ ├── dressers.png │ ├── leftchair.jpg │ ├── otto2.jpeg │ ├── otto3.jpg │ ├── otto4.jpg │ ├── otto5.jpg │ ├── ottoman.jpg │ ├── pattern.png │ ├── returnbox.png │ ├── rightchair.JPG │ ├── sofa.png │ ├── sofad.png │ ├── sofas.png │ ├── truck.png │ ├── trucks.png │ └── wardrobe.png ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── screens │ │ ├── find_product_screen.dart │ │ ├── home_screen.dart │ │ ├── product_detail_screen.dart │ │ ├── shopping_cart_screen.dart │ │ └── stats_screen.dart ├── newFile.md ├── pubspec.yaml └── test │ └── widget_test.dart ├── LICENSE ├── Login-Screens-UI ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── loginscreens │ │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ └── healthcare.png ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── screens │ │ └── first_login_screen.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── README.md ├── Travel-Screens-UI ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── travelappui │ │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── Cardo-Bold.ttf │ ├── Cardo-Italic.ttf │ ├── Cardo-Regular.ttf │ ├── Merriweather-Black.ttf │ ├── Merriweather-Bold.ttf │ ├── Merriweather-Regular.ttf │ ├── arcdetrimp.jpg │ ├── eiffeltower.jpg │ ├── flagfrance.png │ ├── museedu.jpg │ ├── person.jpeg │ └── tower.jpg ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── screens │ │ ├── detail_screen.dart │ │ └── home_screen.dart ├── newfile.md ├── pubspec.yaml └── test │ └── widget_test.dart ├── pet_adoption_ui ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── pet_adoption_ui │ │ │ │ │ └── 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 │ ├── image_one.jpg │ ├── image_three.jpg │ ├── image_two.jpg │ └── profile.jpg ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.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 │ ├── main.dart │ └── src │ │ ├── app.dart │ │ └── pet_detail.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── widget_test.dart └── profile_screen ├── .gitignore ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── profile_screen │ │ │ │ └── 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 ├── first_comment_profile_pic.jpg ├── list_item_fifth.jpg ├── list_item_fourth.jpg ├── list_item_one.jpg ├── list_item_second.jpg ├── list_item_sixth.jpg ├── list_item_third.jpg ├── profile_kylie.jpg ├── second_comment_profile_pic.jpg ├── story_fifth.jpg ├── story_first.jpg ├── story_fourth.jpg ├── story_second.jpg ├── story_third.jpg └── upated_pic.jpg ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.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 ├── account.dart ├── buttonsection.dart ├── custom.dart ├── favourite.dart ├── grid_section.dart ├── home.dart ├── horizontal_list_section.dart ├── main.dart ├── search.dart ├── statswidget.dart └── view_post.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/.gitignore -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/.metadata -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/README.md -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/build.gradle -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/java/com/example/paymentsscreens/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/java/com/example/paymentsscreens/MainActivity.java -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/build.gradle -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/android/settings.gradle -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/assets/airtellogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/assets/airtellogo.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/assets/dart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/assets/dart.jpg -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/assets/kengenlogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/assets/kengenlogo.jpeg -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/assets/totallogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/assets/totallogo.jpg -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/ios/Runner/main.m -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/lib/main.dart -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/lib/screens/detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/lib/screens/detail_screen.dart -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/pubspec.yaml -------------------------------------------------------------------------------- /Bill-Payments-Screen-UI/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Bill-Payments-Screen-UI/test/widget_test.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/.gitignore -------------------------------------------------------------------------------- /Flight-App-Screens-UI/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/.metadata -------------------------------------------------------------------------------- /Flight-App-Screens-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/README.md -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/build.gradle -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/java/com/example/flightappscreens/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/java/com/example/flightappscreens/MainActivity.java -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/build.gradle -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Flight-App-Screens-UI/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/android/settings.gradle -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/barcode.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/beach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/beach.jpg -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/macau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/macau.jpg -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/operahouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/operahouse.jpg -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/people.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/people.jpeg -------------------------------------------------------------------------------- /Flight-App-Screens-UI/assets/worldmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/assets/worldmap.jpg -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Flight-App-Screens-UI/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/ios/Runner/main.m -------------------------------------------------------------------------------- /Flight-App-Screens-UI/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/lib/main.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/lib/screens/flight_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/lib/screens/flight_screen.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/lib/screens/seat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/lib/screens/seat_screen.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/lib/screens/ticket_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/lib/screens/ticket_screen.dart -------------------------------------------------------------------------------- /Flight-App-Screens-UI/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/pubspec.yaml -------------------------------------------------------------------------------- /Flight-App-Screens-UI/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Flight-App-Screens-UI/test/widget_test.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/.gitignore -------------------------------------------------------------------------------- /Furniture-Screens-UI/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/.metadata -------------------------------------------------------------------------------- /Furniture-Screens-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/README.md -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/build.gradle -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/java/com/example/uishoppingcart/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/java/com/example/uishoppingcart/MainActivity.java -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/build.gradle -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Furniture-Screens-UI/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/android/settings.gradle -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/Quicksand-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/Quicksand-Bold.ttf -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/Quicksand-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/Quicksand-Light.ttf -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/Quicksand-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/Quicksand-Medium.ttf -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/Quicksand-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/Quicksand-Regular.ttf -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/anotherchair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/anotherchair.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/box.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/card.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/centerchair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/centerchair.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/chair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/chair.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/chris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/chris.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/desk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/desk.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/desks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/desks.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/drawer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/drawer.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/dresser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/dresser.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/dressers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/dressers.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/leftchair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/leftchair.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/otto2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/otto2.jpeg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/otto3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/otto3.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/otto4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/otto4.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/otto5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/otto5.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/ottoman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/ottoman.jpg -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/pattern.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/returnbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/returnbox.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/rightchair.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/rightchair.JPG -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/sofa.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/sofad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/sofad.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/sofas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/sofas.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/truck.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/trucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/trucks.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/assets/wardrobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/assets/wardrobe.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Furniture-Screens-UI/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/ios/Runner/main.m -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/main.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/screens/find_product_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/screens/find_product_screen.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/screens/product_detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/screens/product_detail_screen.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/screens/shopping_cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/screens/shopping_cart_screen.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/lib/screens/stats_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/lib/screens/stats_screen.dart -------------------------------------------------------------------------------- /Furniture-Screens-UI/newFile.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Furniture-Screens-UI/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/pubspec.yaml -------------------------------------------------------------------------------- /Furniture-Screens-UI/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Furniture-Screens-UI/test/widget_test.dart -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/LICENSE -------------------------------------------------------------------------------- /Login-Screens-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/.gitignore -------------------------------------------------------------------------------- /Login-Screens-UI/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/.metadata -------------------------------------------------------------------------------- /Login-Screens-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/README.md -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/build.gradle -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/java/com/example/loginscreens/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/java/com/example/loginscreens/MainActivity.java -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Login-Screens-UI/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Login-Screens-UI/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/build.gradle -------------------------------------------------------------------------------- /Login-Screens-UI/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Login-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Login-Screens-UI/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/android/settings.gradle -------------------------------------------------------------------------------- /Login-Screens-UI/assets/healthcare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/assets/healthcare.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Login-Screens-UI/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/ios/Runner/main.m -------------------------------------------------------------------------------- /Login-Screens-UI/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/lib/main.dart -------------------------------------------------------------------------------- /Login-Screens-UI/lib/screens/first_login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/lib/screens/first_login_screen.dart -------------------------------------------------------------------------------- /Login-Screens-UI/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/pubspec.yaml -------------------------------------------------------------------------------- /Login-Screens-UI/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Login-Screens-UI/test/widget_test.dart -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/README.md -------------------------------------------------------------------------------- /Travel-Screens-UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/.gitignore -------------------------------------------------------------------------------- /Travel-Screens-UI/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/.metadata -------------------------------------------------------------------------------- /Travel-Screens-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/README.md -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/build.gradle -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/java/com/example/travelappui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/java/com/example/travelappui/MainActivity.java -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Travel-Screens-UI/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Travel-Screens-UI/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/build.gradle -------------------------------------------------------------------------------- /Travel-Screens-UI/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /Travel-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Travel-Screens-UI/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/android/settings.gradle -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Cardo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Cardo-Bold.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Cardo-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Cardo-Italic.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Cardo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Cardo-Regular.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Merriweather-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Merriweather-Black.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/arcdetrimp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/arcdetrimp.jpg -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/eiffeltower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/eiffeltower.jpg -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/flagfrance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/flagfrance.png -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/museedu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/museedu.jpg -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/person.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/person.jpeg -------------------------------------------------------------------------------- /Travel-Screens-UI/assets/tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/assets/tower.jpg -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/Info.plist -------------------------------------------------------------------------------- /Travel-Screens-UI/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/ios/Runner/main.m -------------------------------------------------------------------------------- /Travel-Screens-UI/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/lib/main.dart -------------------------------------------------------------------------------- /Travel-Screens-UI/lib/screens/detail_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/lib/screens/detail_screen.dart -------------------------------------------------------------------------------- /Travel-Screens-UI/lib/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/lib/screens/home_screen.dart -------------------------------------------------------------------------------- /Travel-Screens-UI/newfile.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Travel-Screens-UI/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/pubspec.yaml -------------------------------------------------------------------------------- /Travel-Screens-UI/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/Travel-Screens-UI/test/widget_test.dart -------------------------------------------------------------------------------- /pet_adoption_ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/.gitignore -------------------------------------------------------------------------------- /pet_adoption_ui/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/.metadata -------------------------------------------------------------------------------- /pet_adoption_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/README.md -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/build.gradle -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/java/com/example/pet_adoption_ui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/java/com/example/pet_adoption_ui/MainActivity.java -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /pet_adoption_ui/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /pet_adoption_ui/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/build.gradle -------------------------------------------------------------------------------- /pet_adoption_ui/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /pet_adoption_ui/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /pet_adoption_ui/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/android/settings.gradle -------------------------------------------------------------------------------- /pet_adoption_ui/assets/image_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/assets/image_one.jpg -------------------------------------------------------------------------------- /pet_adoption_ui/assets/image_three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/assets/image_three.jpg -------------------------------------------------------------------------------- /pet_adoption_ui/assets/image_two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/assets/image_two.jpg -------------------------------------------------------------------------------- /pet_adoption_ui/assets/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/assets/profile.jpg -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/Info.plist -------------------------------------------------------------------------------- /pet_adoption_ui/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/ios/Runner/main.m -------------------------------------------------------------------------------- /pet_adoption_ui/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/lib/main.dart -------------------------------------------------------------------------------- /pet_adoption_ui/lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/lib/src/app.dart -------------------------------------------------------------------------------- /pet_adoption_ui/lib/src/pet_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/lib/src/pet_detail.dart -------------------------------------------------------------------------------- /pet_adoption_ui/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/pubspec.lock -------------------------------------------------------------------------------- /pet_adoption_ui/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/pubspec.yaml -------------------------------------------------------------------------------- /pet_adoption_ui/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/pet_adoption_ui/test/widget_test.dart -------------------------------------------------------------------------------- /profile_screen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/.gitignore -------------------------------------------------------------------------------- /profile_screen/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/.metadata -------------------------------------------------------------------------------- /profile_screen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/README.md -------------------------------------------------------------------------------- /profile_screen/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/build.gradle -------------------------------------------------------------------------------- /profile_screen/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/java/com/example/profile_screen/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/java/com/example/profile_screen/MainActivity.java -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /profile_screen/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /profile_screen/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /profile_screen/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/build.gradle -------------------------------------------------------------------------------- /profile_screen/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /profile_screen/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /profile_screen/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/android/settings.gradle -------------------------------------------------------------------------------- /profile_screen/assets/first_comment_profile_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/first_comment_profile_pic.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_fifth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_fifth.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_fourth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_fourth.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_one.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_second.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_second.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_sixth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_sixth.jpg -------------------------------------------------------------------------------- /profile_screen/assets/list_item_third.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/list_item_third.jpg -------------------------------------------------------------------------------- /profile_screen/assets/profile_kylie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/profile_kylie.jpg -------------------------------------------------------------------------------- /profile_screen/assets/second_comment_profile_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/second_comment_profile_pic.jpg -------------------------------------------------------------------------------- /profile_screen/assets/story_fifth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/story_fifth.jpg -------------------------------------------------------------------------------- /profile_screen/assets/story_first.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/story_first.jpg -------------------------------------------------------------------------------- /profile_screen/assets/story_fourth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/story_fourth.jpg -------------------------------------------------------------------------------- /profile_screen/assets/story_second.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/story_second.jpg -------------------------------------------------------------------------------- /profile_screen/assets/story_third.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/story_third.jpg -------------------------------------------------------------------------------- /profile_screen/assets/upated_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/assets/upated_pic.jpg -------------------------------------------------------------------------------- /profile_screen/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /profile_screen/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /profile_screen/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /profile_screen/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /profile_screen/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /profile_screen/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /profile_screen/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /profile_screen/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /profile_screen/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /profile_screen/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/Info.plist -------------------------------------------------------------------------------- /profile_screen/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/ios/Runner/main.m -------------------------------------------------------------------------------- /profile_screen/lib/account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/account.dart -------------------------------------------------------------------------------- /profile_screen/lib/buttonsection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/buttonsection.dart -------------------------------------------------------------------------------- /profile_screen/lib/custom.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | -------------------------------------------------------------------------------- /profile_screen/lib/favourite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/favourite.dart -------------------------------------------------------------------------------- /profile_screen/lib/grid_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/grid_section.dart -------------------------------------------------------------------------------- /profile_screen/lib/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/home.dart -------------------------------------------------------------------------------- /profile_screen/lib/horizontal_list_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/horizontal_list_section.dart -------------------------------------------------------------------------------- /profile_screen/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/main.dart -------------------------------------------------------------------------------- /profile_screen/lib/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/search.dart -------------------------------------------------------------------------------- /profile_screen/lib/statswidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/statswidget.dart -------------------------------------------------------------------------------- /profile_screen/lib/view_post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/lib/view_post.dart -------------------------------------------------------------------------------- /profile_screen/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/pubspec.lock -------------------------------------------------------------------------------- /profile_screen/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/pubspec.yaml -------------------------------------------------------------------------------- /profile_screen/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohak1283/Flutter-UIs-Collection/HEAD/profile_screen/test/widget_test.dart --------------------------------------------------------------------------------