├── .flutter-plugins-dependencies
├── .gitignore
├── .metadata
├── README.md
├── android
├── app
│ ├── build.gradle
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── kotlin
│ │ └── com
│ │ │ └── nb
│ │ │ └── flutteruishopping
│ │ │ └── MainActivity.kt
│ │ └── 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
├── fonts
│ ├── icons.ttf
│ └── montserrat
│ │ ├── Montserrat-Black.ttf
│ │ ├── Montserrat-BlackItalic.ttf
│ │ ├── Montserrat-Bold.ttf
│ │ ├── Montserrat-BoldItalic.ttf
│ │ ├── Montserrat-ExtraBold.ttf
│ │ ├── Montserrat-ExtraBoldItalic.ttf
│ │ ├── Montserrat-ExtraLight.ttf
│ │ ├── Montserrat-ExtraLightItalic.ttf
│ │ ├── Montserrat-Italic.ttf
│ │ ├── Montserrat-Light.ttf
│ │ ├── Montserrat-LightItalic.ttf
│ │ ├── Montserrat-Medium.ttf
│ │ ├── Montserrat-MediumItalic.ttf
│ │ ├── Montserrat-Regular.ttf
│ │ ├── Montserrat-SemiBold.ttf
│ │ ├── Montserrat-SemiBoldItalic.ttf
│ │ ├── Montserrat-Thin.ttf
│ │ ├── Montserrat-ThinItalic.ttf
│ │ └── OFL.txt
└── images
│ ├── camera
│ └── ic_launcher.png
│ ├── chat
│ └── ic_launcher.png
│ ├── feed
│ ├── city.png
│ ├── feed11-city1.png
│ ├── feed11-city2.png
│ ├── feed11-header.png
│ ├── feed12_header.png
│ ├── feed12_pic1.png
│ ├── feed12_pic2.png
│ ├── feed12_plus.png
│ ├── feed13_header1.png
│ ├── feed13_header2.png
│ ├── feed13_header3.png
│ ├── feed13_pic1.png
│ ├── feed13_pic2.png
│ ├── feed13_pic3.png
│ ├── feed13_pic4.png
│ ├── feed1_avatar1.png
│ ├── feed1_avatar2.png
│ ├── feed2_avatar2.png
│ ├── feed2_image1.png
│ ├── feed2_image2.png
│ ├── feed_add.png
│ ├── feed_more.png
│ ├── feed_pic3_01.jpg
│ ├── feed_pic3_02.jpg
│ ├── feed_pic3_03.jpg
│ ├── feed_pic3_header_01.jpg
│ ├── feed_pic3_header_02.jpg
│ ├── feed_pic3_header_03.jpg
│ ├── feed_pic3_left.jpg
│ ├── feed_pic5_01.jpg
│ ├── feed_search.png
│ ├── heart.png
│ ├── ic_launcher.png
│ ├── landscape.png
│ ├── menonglass.png
│ ├── night.png
│ ├── shop_river.png
│ └── white_background.png
│ ├── main
│ ├── pic01.png
│ ├── pic02.png
│ ├── pic03.png
│ ├── pic04.png
│ ├── pic05.png
│ ├── pic06.png
│ ├── pic07.png
│ ├── pic08.png
│ ├── pic09.png
│ ├── pic10.png
│ └── pic11.png
│ ├── media
│ └── ic_launcher.png
│ ├── navigation
│ └── ic_launcher.png
│ ├── profile
│ ├── ic_launcher.png
│ ├── icon_heart.png
│ ├── icon_home.png
│ ├── icon_stats.png
│ ├── profile_add.png
│ ├── profile_arrow_left.png
│ ├── profile_avatar.png
│ ├── profile_follow.png
│ ├── profile_landscape.png
│ ├── profile_photos_01.png
│ ├── profile_photos_02.png
│ ├── profile_photos_03.png
│ ├── profile_photos_04.png
│ ├── profile_photos_05.png
│ ├── profile_photos_06.png
│ └── profile_photos_07.png
│ ├── shopping
│ ├── apple_pay.png
│ ├── applepay.jpg
│ ├── background.jpg
│ ├── battery.png
│ ├── ic_launcher.png
│ ├── paypal.png
│ └── visa.png
│ ├── signup
│ ├── ic_launcher.png
│ ├── logo_signup.png
│ ├── signup_page_11_bg.png
│ ├── signup_page_6_bg.png
│ ├── signup_page_8_bg.png
│ └── signup_page_9_profile.png
│ ├── statistics
│ └── ic_launcher.png
│ └── walkthrough
│ └── ic_launcher.png
├── doc
├── 01-signup-no.jpg
├── 01-signup.jpg
├── 02-walk_through-no.jpg
├── 02-walk_through.jpg
├── 03-navigation-no.jpg
├── 03-navigation.jpg
├── 04-profile-no.jpg
├── 04-profile.jpg
├── 05-feed-no.jpg
├── 05-feed.jpg
├── 06-chat-no.jpg
├── 06-chat.jpg
├── 07-shopping-no.jpg
├── 07-shopping.jpg
├── 08-statistics-no.jpg
├── 08-statistics.jpg
├── 09-media-no.jpg
├── 09-media.jpg
├── 10-camera-no.jpg
└── 10-camera.jpg
├── images
├── camera
│ └── ic_launcher.png
├── chat
│ └── ic_launcher.png
├── feed
│ ├── city.png
│ ├── feed11-city1.png
│ ├── feed11-city2.png
│ ├── feed11-header.png
│ ├── feed12_header.png
│ ├── feed12_pic1.png
│ ├── feed12_pic2.png
│ ├── feed12_plus.png
│ ├── feed13_header1.png
│ ├── feed13_header2.png
│ ├── feed13_header3.png
│ ├── feed13_pic1.png
│ ├── feed13_pic2.png
│ ├── feed13_pic3.png
│ ├── feed13_pic4.png
│ ├── feed1_avatar1.png
│ ├── feed1_avatar2.png
│ ├── feed2_avatar2.png
│ ├── feed2_image1.png
│ ├── feed2_image2.png
│ ├── feed_add.png
│ ├── feed_more.png
│ ├── feed_pic5_01.jpg
│ ├── feed_search.png
│ ├── heart.png
│ ├── ic_launcher.png
│ ├── landscape.png
│ ├── menonglass.png
│ ├── night.png
│ ├── shop_river.png
│ └── white_background.png
├── main
│ ├── pic01.png
│ ├── pic02.png
│ ├── pic03.png
│ ├── pic04.png
│ ├── pic05.png
│ ├── pic06.png
│ ├── pic07.png
│ ├── pic08.png
│ ├── pic09.png
│ ├── pic10.png
│ └── pic11.png
├── media
│ └── ic_launcher.png
├── navigation
│ └── ic_launcher.png
├── profile
│ ├── ic_launcher.png
│ ├── profile_arrow_left.png
│ ├── profile_avatar.png
│ ├── profile_follow.png
│ ├── profile_photos_01.png
│ ├── profile_photos_02.png
│ └── profile_photos_03.png
├── shopping
│ ├── apple_pay.png
│ ├── applepay.jpg
│ ├── background.jpg
│ ├── battery.png
│ ├── ic_launcher.png
│ ├── paypal.png
│ └── visa.png
├── signup
│ ├── ic_launcher.png
│ ├── logo_signup.png
│ ├── signup_page_11_bg.png
│ ├── signup_page_6_bg.png
│ ├── signup_page_8_bg.png
│ └── signup_page_9_profile.png
├── statistics
│ └── ic_launcher.png
└── walkthrough
│ └── ic_launcher.png
├── ios
├── Flutter
│ ├── AppFrameworkInfo.plist
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── flutter_export_environment.sh
├── Podfile
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ └── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── IDEWorkspaceChecks.plist
│ │ └── WorkspaceSettings.xcsettings
└── Runner
│ ├── AppDelegate.h
│ ├── AppDelegate.m
│ ├── Assets.xcassets
│ ├── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── Icon-App-1024x1024@1x.png
│ │ ├── Icon-App-20x20@1x.png
│ │ ├── Icon-App-20x20@2x.png
│ │ ├── Icon-App-20x20@3x.png
│ │ ├── Icon-App-29x29@1x.png
│ │ ├── Icon-App-29x29@2x.png
│ │ ├── Icon-App-29x29@3x.png
│ │ ├── Icon-App-40x40@1x.png
│ │ ├── Icon-App-40x40@2x.png
│ │ ├── Icon-App-40x40@3x.png
│ │ ├── Icon-App-60x60@2x.png
│ │ ├── Icon-App-60x60@3x.png
│ │ ├── Icon-App-76x76@1x.png
│ │ ├── Icon-App-76x76@2x.png
│ │ └── Icon-App-83.5x83.5@2x.png
│ └── LaunchImage.imageset
│ │ ├── Contents.json
│ │ ├── LaunchImage.png
│ │ ├── LaunchImage@2x.png
│ │ ├── LaunchImage@3x.png
│ │ └── README.md
│ ├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
│ ├── Info.plist
│ └── main.m
├── lib
├── const
│ ├── _const.dart
│ ├── color_const.dart
│ ├── gradient_const.dart
│ ├── icons.dart
│ ├── images_const.dart
│ ├── page_str_const.dart
│ ├── shadow_const.dart
│ ├── size_const.dart
│ ├── string_const.dart
│ └── styles.dart
├── item
│ ├── Menu.dart
│ └── menu_stream.dart
├── main.dart
├── page
│ ├── camera
│ │ └── CameraPageOne.dart
│ ├── chat
│ │ └── ChatPageOne.dart
│ ├── empty_page.dart
│ ├── feed
│ │ ├── FeedPageEleven.dart
│ │ ├── FeedPageFour.dart
│ │ ├── FeedPageOne.dart
│ │ ├── FeedPageTen.dart
│ │ ├── FeedPageThirteen.dart
│ │ ├── FeedPageTwelve.dart
│ │ ├── FeedPageTwo.dart
│ │ ├── feed_const.dart
│ │ ├── feed_five_page.dart
│ │ ├── feed_three_page.dart
│ │ └── top_title.dart
│ ├── home_page.dart
│ ├── media
│ │ └── MediaPageOne.dart
│ ├── navigation
│ │ ├── common
│ │ │ ├── pages
│ │ │ │ └── home_page.dart
│ │ │ └── widgets
│ │ │ │ └── background_common.dart
│ │ └── navigation1
│ │ │ ├── animations
│ │ │ └── home_page_animator.dart
│ │ │ ├── coordinator.dart
│ │ │ └── widgets
│ │ │ ├── button.dart
│ │ │ └── menu_buttons.dart
│ ├── page_const.dart
│ ├── profile
│ │ ├── ProfilePageOne.dart
│ │ ├── ProfilePageTwo.dart
│ │ ├── profile_const.dart
│ │ └── top_bar.dart
│ ├── shopping
│ │ ├── ShopPageEighteen.dart
│ │ ├── ShopPageNineteen.dart
│ │ └── ShopPageOne.dart
│ ├── signup
│ │ ├── SignPageEight.dart
│ │ ├── SignPageEleven.dart
│ │ ├── SignPageFive.dart
│ │ ├── SignPageFour.dart
│ │ ├── SignPageNine.dart
│ │ ├── SignPageOne.dart
│ │ ├── SignPageSeven.dart
│ │ ├── SignPageSix.dart
│ │ ├── SignPageThree.dart
│ │ ├── SignPageTwo.dart
│ │ ├── SingPageTen.dart
│ │ └── widgets
│ │ │ ├── date_picker.dart
│ │ │ ├── gender_picker.dart
│ │ │ ├── location_picker.dart
│ │ │ ├── signup_6_box.dart
│ │ │ ├── signup_apbar.dart
│ │ │ ├── signup_arrow_button.dart
│ │ │ ├── signup_button.dart
│ │ │ ├── signup_const.dart
│ │ │ └── signup_profile_image_picker.dart
│ ├── statistics
│ │ └── StatisticPageOne.dart
│ └── walkthrough
│ │ └── WalkThPageOne.dart
├── util
│ ├── GradientUtil.dart
│ └── SizeUtil.dart
└── view
│ └── AboutMeTitle.dart
├── pubspec.yaml
└── test
└── widget_test.dart
/.flutter-plugins-dependencies:
--------------------------------------------------------------------------------
1 | {"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"google_places_picker","path":"/Users/muhammadsaadullahshahid/developer/flutter/.pub-cache/hosted/pub.dartlang.org/google_places_picker-2.1.0+3/","native_build":true,"dependencies":[]},{"name":"image_picker","path":"/Users/muhammadsaadullahshahid/developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/","native_build":true,"dependencies":[]}],"android":[{"name":"flutter_plugin_android_lifecycle","path":"/Users/muhammadsaadullahshahid/developer/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-1.0.11/","native_build":true,"dependencies":[]},{"name":"google_places_picker","path":"/Users/muhammadsaadullahshahid/developer/flutter/.pub-cache/hosted/pub.dartlang.org/google_places_picker-2.1.0+3/","native_build":true,"dependencies":[]},{"name":"image_picker","path":"/Users/muhammadsaadullahshahid/developer/flutter/.pub-cache/hosted/pub.dartlang.org/image_picker-0.6.7+22/","native_build":true,"dependencies":["flutter_plugin_android_lifecycle"]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"flutter_plugin_android_lifecycle","dependencies":[]},{"name":"google_places_picker","dependencies":[]},{"name":"image_picker","dependencies":["flutter_plugin_android_lifecycle"]}],"date_created":"2023-03-27 01:50:50.103075","version":"3.3.8"}
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.lock
4 | *.log
5 | *.pyc
6 | *.swp
7 | .DS_Store
8 | .atom/
9 | .buildlog/
10 | .history
11 | .svn/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/
18 |
19 | # Visual Studio Code related
20 | .vscode/
21 |
22 | # Flutter/Dart/Pub related
23 | **/doc/api/
24 | .dart_tool/
25 | .flutter-plugins
26 | .packages
27 | .pub-cache/
28 | .pub/
29 | build/
30 |
31 | # Android related
32 | **/android/**/gradle-wrapper.jar
33 | **/android/.gradle
34 | **/android/captures/
35 | **/android/gradlew
36 | **/android/gradlew.bat
37 | **/android/local.properties
38 | **/android/**/GeneratedPluginRegistrant.java
39 |
40 | # iOS/XCode related
41 | **/ios/**/*.mode1v3
42 | **/ios/**/*.mode2v3
43 | **/ios/**/*.moved-aside
44 | **/ios/**/*.pbxuser
45 | **/ios/**/*.perspectivev3
46 | **/ios/**/*sync/
47 | **/ios/**/.sconsign.dblite
48 | **/ios/**/.tags*
49 | **/ios/**/.vagrant/
50 | **/ios/**/DerivedData/
51 | **/ios/**/Icon?
52 | **/ios/**/Pods/
53 | **/ios/**/.symlinks/
54 | **/ios/**/ui.profile
55 | **/ios/**/xcuserdata
56 | **/ios/.generated/
57 | **/ios/Flutter/App.framework
58 | **/ios/Flutter/Flutter.framework
59 | **/ios/Flutter/Generated.xcconfig
60 | **/ios/Flutter/app.flx
61 | **/ios/Flutter/app.zip
62 | **/ios/Flutter/flutter_assets/
63 | **/ios/ServiceDefinitions.json
64 | **/ios/Runner/GeneratedPluginRegistrant.*
65 |
66 | # Exceptions to above rules.
67 | !**/ios/**/default.mode1v3
68 | !**/ios/**/default.mode2v3
69 | !**/ios/**/default.pbxuser
70 | !**/ios/**/default.perspectivev3
71 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
72 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: 8426910a19abc4ab081c58fd1a72c433353eaa31
8 | channel: master
9 |
10 | project_type: app
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # flutter-ui-nice
2 |
3 | ### :heart: Star :heart: the repo to support the project or :smile:[Follow Me](https://github.com/nb312).Thanks!
4 |
5 | | Facebook Page | Twitter | Medium | QQ Group |
6 | | ----------------------------------------------------- | --------------------------------------- | ---------------------------------------------- | --------- |
7 | | [Flutter Open ](https://www.facebook.com/flutteropen) | [NieBin](https://twitter.com/niebin_gg) | [Flutter Open](https://medium.com/flutteropen) | 963828159 |
8 |
9 | # Contributors
10 |
11 | | ~ | ~ | ~ | ~ | ~ |
12 | | ---------------------------------------------- | ---------------------------------------- | ---------------------------------------------- | ----------------------------------------- | --------------------------------------------------------- | -------------------------------------------------------- |
13 | | [NieBin](https://github.com/nb312) | [Echonox](https://github.com/echonox) | [Mahesh Jamdade](https://github.com/maheshmnj) | [edgartrem](https://github.com/edgartrem) | [srikanthbollojula](https://github.com/srikanthbollojula) |
14 | | [Yasin ilhan](https://github.com/kalismeras61) | [Çağrı Akgül](https://github.com/saturu) | [dndoanh](https://github.com/dndoanh) | [Waffulz](https://github.com/Waffulz) | [Santosh Prasad Sah](https://github.com/SahSantoshh) | [Muhammad Saadullah Shahid](https://github.com/saadii00) |
15 |
16 | # Contents
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | # License
39 |
40 | Copyright 2019 @NieBin
41 |
42 | Licensed under the Apache License, Version 2.0 (the "License");
43 | you may not use this file except in compliance with the License.
44 | You may obtain a copy of the License at
45 |
46 | http://www.apache.org/licenses/LICENSE-2.0
47 |
48 | Unless required by applicable law or agreed to in writing, software
49 | distributed under the License is distributed on an "AS IS" BASIS,
50 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
51 | See the License for the specific language governing permissions and
52 | limitations under the License.
53 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | compileSdkVersion 31
30 |
31 | sourceSets {
32 | main.java.srcDirs += 'src/main/kotlin'
33 | }
34 |
35 | lintOptions {
36 | disable 'InvalidPackage'
37 | }
38 |
39 | defaultConfig {
40 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41 | applicationId "com.nb.flutteruishopping"
42 | minSdkVersion 16
43 | targetSdkVersion 29
44 | versionCode flutterVersionCode.toInteger()
45 | versionName flutterVersionName
46 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
47 | }
48 |
49 | buildTypes {
50 | release {
51 | // TODO: Add your own signing config for the release build.
52 | // Signing with the debug keys for now, so `flutter run --release` works.
53 | signingConfig signingConfigs.debug
54 | }
55 | }
56 | }
57 |
58 | flutter {
59 | source '../..'
60 | }
61 |
62 | dependencies {
63 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
64 | testImplementation 'junit:junit:4.12'
65 | androidTestImplementation 'com.android.support.test:runner:1.0.2'
66 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
67 | }
68 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
8 |
9 |
10 |
11 |
12 |
17 |
21 |
28 |
32 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
44 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/nb/flutteruishopping/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.nb.flutteruishopping
2 |
3 | import android.os.Bundle
4 |
5 | import io.flutter.embedding.android.FlutterActivity
6 |
7 |
8 | class MainActivity: FlutterActivity() {
9 | }
10 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.7.20'
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:7.1.2'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | jcenter()
18 | }
19 | }
20 |
21 | rootProject.buildDir = '../build'
22 | subprojects {
23 | project.buildDir = "${rootProject.buildDir}/${project.name}"
24 | }
25 | subprojects {
26 | project.evaluationDependsOn(':app')
27 | }
28 |
29 | task clean(type: Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
33 | subprojects {
34 | project.configurations.all {
35 | resolutionStrategy.eachDependency { details ->
36 | if (details.requested.group == 'com.android.support'
37 | && !details.requested.name.contains('multidex') ) {
38 | details.useVersion "26.1.0"
39 | }
40 | }
41 | }
42 | }
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 | android.enableR8=true
5 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jun 23 08:50:38 CEST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
7 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
4 |
5 | def plugins = new Properties()
6 | def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
7 | if (pluginsFile.exists()) {
8 | pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
9 | }
10 |
11 | plugins.each { name, path ->
12 | def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
13 | include ":$name"
14 | project(":$name").projectDir = pluginDirectory
15 | }
16 |
--------------------------------------------------------------------------------
/assets/fonts/icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/icons.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Black.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-BlackItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-BlackItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Bold.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-BoldItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-ExtraBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-ExtraBold.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-ExtraLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-ExtraLight.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-ExtraLightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-ExtraLightItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Italic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Light.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-LightItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Medium.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-MediumItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-MediumItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Regular.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-SemiBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-SemiBold.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-SemiBoldItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-Thin.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/Montserrat-ThinItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/fonts/montserrat/Montserrat-ThinItalic.ttf
--------------------------------------------------------------------------------
/assets/fonts/montserrat/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | http://scripts.sil.org/OFL
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/assets/images/camera/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/camera/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/chat/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/chat/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/feed/city.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/city.png
--------------------------------------------------------------------------------
/assets/images/feed/feed11-city1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed11-city1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed11-city2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed11-city2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed11-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed11-header.png
--------------------------------------------------------------------------------
/assets/images/feed/feed12_header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed12_header.png
--------------------------------------------------------------------------------
/assets/images/feed/feed12_pic1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed12_pic1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed12_pic2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed12_pic2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed12_plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed12_plus.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_header1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_header1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_header2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_header2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_header3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_header3.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_pic1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_pic1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_pic2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_pic2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_pic3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_pic3.png
--------------------------------------------------------------------------------
/assets/images/feed/feed13_pic4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed13_pic4.png
--------------------------------------------------------------------------------
/assets/images/feed/feed1_avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed1_avatar1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed1_avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed1_avatar2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed2_avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed2_avatar2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed2_image1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed2_image1.png
--------------------------------------------------------------------------------
/assets/images/feed/feed2_image2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed2_image2.png
--------------------------------------------------------------------------------
/assets/images/feed/feed_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_add.png
--------------------------------------------------------------------------------
/assets/images/feed/feed_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_more.png
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_01.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_02.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_03.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_header_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_header_01.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_header_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_header_02.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_header_03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_header_03.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic3_left.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic3_left.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_pic5_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_pic5_01.jpg
--------------------------------------------------------------------------------
/assets/images/feed/feed_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/feed_search.png
--------------------------------------------------------------------------------
/assets/images/feed/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/heart.png
--------------------------------------------------------------------------------
/assets/images/feed/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/feed/landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/landscape.png
--------------------------------------------------------------------------------
/assets/images/feed/menonglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/menonglass.png
--------------------------------------------------------------------------------
/assets/images/feed/night.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/night.png
--------------------------------------------------------------------------------
/assets/images/feed/shop_river.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/shop_river.png
--------------------------------------------------------------------------------
/assets/images/feed/white_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/feed/white_background.png
--------------------------------------------------------------------------------
/assets/images/main/pic01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic01.png
--------------------------------------------------------------------------------
/assets/images/main/pic02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic02.png
--------------------------------------------------------------------------------
/assets/images/main/pic03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic03.png
--------------------------------------------------------------------------------
/assets/images/main/pic04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic04.png
--------------------------------------------------------------------------------
/assets/images/main/pic05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic05.png
--------------------------------------------------------------------------------
/assets/images/main/pic06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic06.png
--------------------------------------------------------------------------------
/assets/images/main/pic07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic07.png
--------------------------------------------------------------------------------
/assets/images/main/pic08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic08.png
--------------------------------------------------------------------------------
/assets/images/main/pic09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic09.png
--------------------------------------------------------------------------------
/assets/images/main/pic10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic10.png
--------------------------------------------------------------------------------
/assets/images/main/pic11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/main/pic11.png
--------------------------------------------------------------------------------
/assets/images/media/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/media/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/navigation/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/navigation/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/profile/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/profile/icon_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/icon_heart.png
--------------------------------------------------------------------------------
/assets/images/profile/icon_home.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/icon_home.png
--------------------------------------------------------------------------------
/assets/images/profile/icon_stats.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/icon_stats.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_add.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_arrow_left.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_avatar.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_follow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_follow.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_landscape.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_01.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_02.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_03.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_04.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_05.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_06.png
--------------------------------------------------------------------------------
/assets/images/profile/profile_photos_07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/profile/profile_photos_07.png
--------------------------------------------------------------------------------
/assets/images/shopping/apple_pay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/apple_pay.png
--------------------------------------------------------------------------------
/assets/images/shopping/applepay.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/applepay.jpg
--------------------------------------------------------------------------------
/assets/images/shopping/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/background.jpg
--------------------------------------------------------------------------------
/assets/images/shopping/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/battery.png
--------------------------------------------------------------------------------
/assets/images/shopping/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/shopping/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/paypal.png
--------------------------------------------------------------------------------
/assets/images/shopping/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/shopping/visa.png
--------------------------------------------------------------------------------
/assets/images/signup/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/signup/logo_signup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/logo_signup.png
--------------------------------------------------------------------------------
/assets/images/signup/signup_page_11_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/signup_page_11_bg.png
--------------------------------------------------------------------------------
/assets/images/signup/signup_page_6_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/signup_page_6_bg.png
--------------------------------------------------------------------------------
/assets/images/signup/signup_page_8_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/signup_page_8_bg.png
--------------------------------------------------------------------------------
/assets/images/signup/signup_page_9_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/signup/signup_page_9_profile.png
--------------------------------------------------------------------------------
/assets/images/statistics/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/statistics/ic_launcher.png
--------------------------------------------------------------------------------
/assets/images/walkthrough/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/assets/images/walkthrough/ic_launcher.png
--------------------------------------------------------------------------------
/doc/01-signup-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/01-signup-no.jpg
--------------------------------------------------------------------------------
/doc/01-signup.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/01-signup.jpg
--------------------------------------------------------------------------------
/doc/02-walk_through-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/02-walk_through-no.jpg
--------------------------------------------------------------------------------
/doc/02-walk_through.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/02-walk_through.jpg
--------------------------------------------------------------------------------
/doc/03-navigation-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/03-navigation-no.jpg
--------------------------------------------------------------------------------
/doc/03-navigation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/03-navigation.jpg
--------------------------------------------------------------------------------
/doc/04-profile-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/04-profile-no.jpg
--------------------------------------------------------------------------------
/doc/04-profile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/04-profile.jpg
--------------------------------------------------------------------------------
/doc/05-feed-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/05-feed-no.jpg
--------------------------------------------------------------------------------
/doc/05-feed.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/05-feed.jpg
--------------------------------------------------------------------------------
/doc/06-chat-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/06-chat-no.jpg
--------------------------------------------------------------------------------
/doc/06-chat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/06-chat.jpg
--------------------------------------------------------------------------------
/doc/07-shopping-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/07-shopping-no.jpg
--------------------------------------------------------------------------------
/doc/07-shopping.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/07-shopping.jpg
--------------------------------------------------------------------------------
/doc/08-statistics-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/08-statistics-no.jpg
--------------------------------------------------------------------------------
/doc/08-statistics.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/08-statistics.jpg
--------------------------------------------------------------------------------
/doc/09-media-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/09-media-no.jpg
--------------------------------------------------------------------------------
/doc/09-media.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/09-media.jpg
--------------------------------------------------------------------------------
/doc/10-camera-no.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/10-camera-no.jpg
--------------------------------------------------------------------------------
/doc/10-camera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/doc/10-camera.jpg
--------------------------------------------------------------------------------
/images/camera/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/camera/ic_launcher.png
--------------------------------------------------------------------------------
/images/chat/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/chat/ic_launcher.png
--------------------------------------------------------------------------------
/images/feed/city.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/city.png
--------------------------------------------------------------------------------
/images/feed/feed11-city1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed11-city1.png
--------------------------------------------------------------------------------
/images/feed/feed11-city2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed11-city2.png
--------------------------------------------------------------------------------
/images/feed/feed11-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed11-header.png
--------------------------------------------------------------------------------
/images/feed/feed12_header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed12_header.png
--------------------------------------------------------------------------------
/images/feed/feed12_pic1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed12_pic1.png
--------------------------------------------------------------------------------
/images/feed/feed12_pic2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed12_pic2.png
--------------------------------------------------------------------------------
/images/feed/feed12_plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed12_plus.png
--------------------------------------------------------------------------------
/images/feed/feed13_header1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_header1.png
--------------------------------------------------------------------------------
/images/feed/feed13_header2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_header2.png
--------------------------------------------------------------------------------
/images/feed/feed13_header3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_header3.png
--------------------------------------------------------------------------------
/images/feed/feed13_pic1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_pic1.png
--------------------------------------------------------------------------------
/images/feed/feed13_pic2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_pic2.png
--------------------------------------------------------------------------------
/images/feed/feed13_pic3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_pic3.png
--------------------------------------------------------------------------------
/images/feed/feed13_pic4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed13_pic4.png
--------------------------------------------------------------------------------
/images/feed/feed1_avatar1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed1_avatar1.png
--------------------------------------------------------------------------------
/images/feed/feed1_avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed1_avatar2.png
--------------------------------------------------------------------------------
/images/feed/feed2_avatar2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed2_avatar2.png
--------------------------------------------------------------------------------
/images/feed/feed2_image1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed2_image1.png
--------------------------------------------------------------------------------
/images/feed/feed2_image2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed2_image2.png
--------------------------------------------------------------------------------
/images/feed/feed_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed_add.png
--------------------------------------------------------------------------------
/images/feed/feed_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed_more.png
--------------------------------------------------------------------------------
/images/feed/feed_pic5_01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed_pic5_01.jpg
--------------------------------------------------------------------------------
/images/feed/feed_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/feed_search.png
--------------------------------------------------------------------------------
/images/feed/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/heart.png
--------------------------------------------------------------------------------
/images/feed/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/ic_launcher.png
--------------------------------------------------------------------------------
/images/feed/landscape.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/landscape.png
--------------------------------------------------------------------------------
/images/feed/menonglass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/menonglass.png
--------------------------------------------------------------------------------
/images/feed/night.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/night.png
--------------------------------------------------------------------------------
/images/feed/shop_river.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/shop_river.png
--------------------------------------------------------------------------------
/images/feed/white_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/feed/white_background.png
--------------------------------------------------------------------------------
/images/main/pic01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic01.png
--------------------------------------------------------------------------------
/images/main/pic02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic02.png
--------------------------------------------------------------------------------
/images/main/pic03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic03.png
--------------------------------------------------------------------------------
/images/main/pic04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic04.png
--------------------------------------------------------------------------------
/images/main/pic05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic05.png
--------------------------------------------------------------------------------
/images/main/pic06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic06.png
--------------------------------------------------------------------------------
/images/main/pic07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic07.png
--------------------------------------------------------------------------------
/images/main/pic08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic08.png
--------------------------------------------------------------------------------
/images/main/pic09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic09.png
--------------------------------------------------------------------------------
/images/main/pic10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic10.png
--------------------------------------------------------------------------------
/images/main/pic11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/main/pic11.png
--------------------------------------------------------------------------------
/images/media/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/media/ic_launcher.png
--------------------------------------------------------------------------------
/images/navigation/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/navigation/ic_launcher.png
--------------------------------------------------------------------------------
/images/profile/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/ic_launcher.png
--------------------------------------------------------------------------------
/images/profile/profile_arrow_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_arrow_left.png
--------------------------------------------------------------------------------
/images/profile/profile_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_avatar.png
--------------------------------------------------------------------------------
/images/profile/profile_follow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_follow.png
--------------------------------------------------------------------------------
/images/profile/profile_photos_01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_photos_01.png
--------------------------------------------------------------------------------
/images/profile/profile_photos_02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_photos_02.png
--------------------------------------------------------------------------------
/images/profile/profile_photos_03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/profile/profile_photos_03.png
--------------------------------------------------------------------------------
/images/shopping/apple_pay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/apple_pay.png
--------------------------------------------------------------------------------
/images/shopping/applepay.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/applepay.jpg
--------------------------------------------------------------------------------
/images/shopping/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/background.jpg
--------------------------------------------------------------------------------
/images/shopping/battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/battery.png
--------------------------------------------------------------------------------
/images/shopping/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/ic_launcher.png
--------------------------------------------------------------------------------
/images/shopping/paypal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/paypal.png
--------------------------------------------------------------------------------
/images/shopping/visa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/shopping/visa.png
--------------------------------------------------------------------------------
/images/signup/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/ic_launcher.png
--------------------------------------------------------------------------------
/images/signup/logo_signup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/logo_signup.png
--------------------------------------------------------------------------------
/images/signup/signup_page_11_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/signup_page_11_bg.png
--------------------------------------------------------------------------------
/images/signup/signup_page_6_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/signup_page_6_bg.png
--------------------------------------------------------------------------------
/images/signup/signup_page_8_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/signup_page_8_bg.png
--------------------------------------------------------------------------------
/images/signup/signup_page_9_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/signup/signup_page_9_profile.png
--------------------------------------------------------------------------------
/images/statistics/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/statistics/ic_launcher.png
--------------------------------------------------------------------------------
/images/walkthrough/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/images/walkthrough/ic_launcher.png
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 8.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/flutter_export_environment.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | # This is a generated file; do not edit or check into version control.
3 | export "FLUTTER_ROOT=/Users/muhammadsaadullahshahid/developer/flutter"
4 | export "FLUTTER_APPLICATION_PATH=/Users/muhammadsaadullahshahid/flutter-ui-nice"
5 | export "COCOAPODS_PARALLEL_CODE_SIGN=true"
6 | export "FLUTTER_TARGET=lib/main.dart"
7 | export "FLUTTER_BUILD_DIR=build"
8 | export "FLUTTER_BUILD_NAME=1.0.0"
9 | export "FLUTTER_BUILD_NUMBER=1"
10 | export "DART_OBFUSCATION=false"
11 | export "TRACK_WIDGET_CREATION=true"
12 | export "TREE_SHAKE_ICONS=false"
13 | export "PACKAGE_CONFIG=.dart_tool/package_config.json"
14 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '9.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def parse_KV_file(file, separator='=')
14 | file_abs_path = File.expand_path(file)
15 | if !File.exists? file_abs_path
16 | return [];
17 | end
18 | pods_ary = []
19 | skip_line_start_symbols = ["#", "/"]
20 | File.foreach(file_abs_path) { |line|
21 | next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
22 | plugin = line.split(pattern=separator)
23 | if plugin.length == 2
24 | podname = plugin[0].strip()
25 | path = plugin[1].strip()
26 | podpath = File.expand_path("#{path}", file_abs_path)
27 | pods_ary.push({:name => podname, :path => podpath});
28 | else
29 | puts "Invalid plugin specification: #{line}"
30 | end
31 | }
32 | return pods_ary
33 | end
34 |
35 | target 'Runner' do
36 | # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
37 | # referring to absolute paths on developers' machines.
38 | system('rm -rf .symlinks')
39 | system('mkdir -p .symlinks/plugins')
40 |
41 | # Flutter Pods
42 | generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
43 | if generated_xcode_build_settings.empty?
44 | puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
45 | end
46 | generated_xcode_build_settings.map { |p|
47 | if p[:name] == 'FLUTTER_FRAMEWORK_DIR'
48 | symlink = File.join('.symlinks', 'flutter')
49 | File.symlink(File.dirname(p[:path]), symlink)
50 | pod 'Flutter', :path => File.join(symlink, File.basename(p[:path]))
51 | end
52 | }
53 |
54 | # Plugin Pods
55 | plugin_pods = parse_KV_file('../.flutter-plugins')
56 | plugin_pods.map { |p|
57 | symlink = File.join('.symlinks', 'plugins', p[:name])
58 | File.symlink(p[:path], symlink)
59 | pod p[:name], :path => File.join(symlink, 'ios')
60 | }
61 | end
62 |
63 | post_install do |installer|
64 | installer.pods_project.targets.each do |target|
65 | target.build_configurations.each do |config|
66 | config.build_settings['ENABLE_BITCODE'] = 'NO'
67 | end
68 | end
69 | end
70 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
31 |
32 |
33 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
56 |
58 |
64 |
65 |
66 |
67 |
68 |
69 |
75 |
77 |
83 |
84 |
85 |
86 |
88 |
89 |
92 |
93 |
94 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | BuildSystemType
6 | Original
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.h:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 |
4 | @interface AppDelegate : FlutterAppDelegate
5 |
6 | @end
7 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.m:
--------------------------------------------------------------------------------
1 | #include "AppDelegate.h"
2 | #include "GeneratedPluginRegistrant.h"
3 | @import GooglePlaces;
4 | @import GoogleMaps;
5 |
6 | @implementation AppDelegate
7 |
8 | - (BOOL)application:(UIApplication *)application
9 | didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
10 | [GeneratedPluginRegistrant registerWithRegistry:self];
11 | // Replace YOUR_API_KEY with your Google Place API Key
12 | [GMSPlacesClient provideAPIKey:@"YOUR_API_KEY"];
13 | [GMSServices provideAPIKey:@"YOUR_API_KEY"];
14 | // Override point for customization after application launch.
15 | return [super application:application didFinishLaunchingWithOptions:launchOptions];
16 | }
17 |
18 | @end
19 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FlutterOpen/flutter-ui-nice/b8654a0d7d184fcd8acca0821cb4acc75c2c23b1/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | NSPhotoLibraryUsageDescription
8 | Select Profile Photo
9 | NSCameraUsageDescription
10 | Select Profile Photo
11 | NSMicrophoneUsageDescription
12 | Its required because we are accessing the camera, but we will never use the microphone
13 | CFBundleExecutable
14 | $(EXECUTABLE_NAME)
15 | CFBundleIdentifier
16 | $(PRODUCT_BUNDLE_IDENTIFIER)
17 | CFBundleInfoDictionaryVersion
18 | 6.0
19 | CFBundleName
20 | flutter_ui_shopping
21 | CFBundlePackageType
22 | APPL
23 | CFBundleShortVersionString
24 | $(FLUTTER_BUILD_NAME)
25 | CFBundleSignature
26 | ????
27 | CFBundleVersion
28 | $(FLUTTER_BUILD_NUMBER)
29 | LSRequiresIPhoneOS
30 |
31 | UILaunchStoryboardName
32 | LaunchScreen
33 | UIMainStoryboardFile
34 | Main
35 | UISupportedInterfaceOrientations
36 |
37 | UIInterfaceOrientationPortrait
38 | UIInterfaceOrientationLandscapeLeft
39 | UIInterfaceOrientationLandscapeRight
40 |
41 | UISupportedInterfaceOrientations~ipad
42 |
43 | UIInterfaceOrientationPortrait
44 | UIInterfaceOrientationPortraitUpsideDown
45 | UIInterfaceOrientationLandscapeLeft
46 | UIInterfaceOrientationLandscapeRight
47 |
48 | UIViewControllerBasedStatusBarAppearance
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/ios/Runner/main.m:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 | #import "AppDelegate.h"
4 |
5 | int main(int argc, char* argv[]) {
6 | @autoreleasepool {
7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/lib/const/_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 2019/1/28
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | export "color_const.dart";
7 | export "gradient_const.dart";
8 | export "icons.dart";
9 | export "images_const.dart";
10 | export "page_str_const.dart";
11 | export "shadow_const.dart";
12 | export "size_const.dart";
13 | export "string_const.dart";
14 | export "styles.dart";
--------------------------------------------------------------------------------
/lib/const/color_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-14
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | import "package:flutter/material.dart";
7 |
8 | const MAIN_COLOR = Color(0xFF303030);
9 | const DARK_COLOR = Color(0xFFBDBDBD);
10 | const BOTTOM_COLORS = [MAIN_COLOR, DARK_COLOR];
11 | const YELLOW = Color(0xfffbed96);
12 | const BLUE = Color(0xffabecd6);
13 | const BLUE_DEEP = Color(0xffA8CBFD);
14 | const BLUE_LIGHT = Color(0xffAED3EA);
15 | const PURPLE = Color(0xffccc3fc);
16 | const SIGNUP_LIGHT_RED = Color(0xffffc2a1);
17 | const SIGNUP_RED = Color(0xffffb1bb);
18 | const RED = Color(0xffF2A7B3);
19 | const GREEN = Color(0xffc7e5b4);
20 | const RED_LIGHT = Color(0xffFFC3A0);
21 | const TEXT_BLACK = Color(0xFF353535);
22 | const TEXT_BLACK_LIGHT = Color(0xFF34323D);
23 |
--------------------------------------------------------------------------------
/lib/const/gradient_const.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'color_const.dart';
3 |
4 | const LinearGradient SIGNUP_BACKGROUND = LinearGradient(
5 | begin: FractionalOffset(0.0, 0.4), end: FractionalOffset(0.9, 0.7),
6 | // Add one stop for each color. Stops should increase from 0 to 1
7 | stops: [0.1, 0.9], colors: [YELLOW, BLUE],
8 | );
9 |
10 | const LinearGradient SIGNUP_CARD_BACKGROUND = LinearGradient(
11 | tileMode: TileMode.clamp,
12 | begin: FractionalOffset.centerLeft,
13 | end: FractionalOffset.centerRight,
14 | stops: [0.1, 1.0],
15 | colors: [SIGNUP_LIGHT_RED, SIGNUP_RED],
16 | );
17 |
18 | const LinearGradient SIGNUP_CIRCLE_BUTTON_BACKGROUND = LinearGradient(
19 | tileMode: TileMode.clamp,
20 | begin: FractionalOffset.centerLeft,
21 | end: FractionalOffset.centerRight,
22 | // Add one stop for each color. Stops should increase from 0 to 1
23 | stops: [0.4, 1],
24 | colors: [Colors.black, Colors.black54],
25 | );
26 |
--------------------------------------------------------------------------------
/lib/const/icons.dart:
--------------------------------------------------------------------------------
1 |
2 |
3 | const arrow_left = 0xe900;
4 | const arrow_right = 0xe901;
5 | const check = 0xe902;
6 | const plus = 0xe903;
7 | const camera = 0xe904;
--------------------------------------------------------------------------------
/lib/const/images_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-15
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 |
7 | class ImagePath {
8 | //images
9 | static const String imageDir = "assets/images";
10 | static const String pkImage = "$imageDir/pk.jpg";
11 | static const String profileImage = "$imageDir/ui.profile.jpg";
12 | static const String blankImage = "$imageDir/blank.jpg";
13 | static const String dashboardImage = "$imageDir/dashboard.jpg";
14 | static const String loginImage = "$imageDir/login.jpg";
15 | static const String paymentImage = "$imageDir/payment.jpg";
16 | static const String settingsImage = "$imageDir/setting.jpeg";
17 | static const String shoppingImage = "$imageDir/ui.shopping.jpeg";
18 | static const String timelineImage = "$imageDir/timeline.jpeg";
19 | static const String verifyImage = "$imageDir/verification.jpg";
20 | static const String nbImage = "$imageDir/nb.jpeg";
21 | }
22 |
23 | class MainImagePath {
24 | static const String image_path = "assets/images/main";
25 | static const String image_app = "assets/images/media/ic_launcher.png";
26 | static const String image_header = "$image_path/pic04.png";
27 | static const String image_sign_up = "$image_path/pic03.png";
28 | static const String image_walk_through = "$image_path/pic01.png";
29 | static const String image_navigation = "$image_path/pic05.png";
30 | static const String image_profile = "$image_path/pic06.png";
31 | static const String image_feed = "$image_path/pic02.png";
32 | static const String image_chat = "$image_path/pic08.png";
33 | static const String image_shopping = "$image_path/pic09.png";
34 | static const String image_statistic = "$image_path/pic10.png";
35 | static const String image_media = "$image_path/pic11.png";
36 | static const String image_camera = "$image_path/pic01.png";
37 | }
38 |
39 | class SignUpImagePath {
40 | static const String image_path = "assets/images/signup";
41 | static const String SignUpLogo = "$image_path/logo_signup.png";
42 | static const String SignUpPage_11_Bg = "$image_path/signup_page_11_bg.png";
43 | static const String SignUpPage_6_Bg = "$image_path/signup_page_6_bg.png";
44 | static const String SignUpPage_8_Bg = "$image_path/signup_page_8_bg.png";
45 | }
46 |
--------------------------------------------------------------------------------
/lib/const/page_str_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 2018/12/24
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | ///
7 | const SIGN_UP_PAGES = [
8 | "Sign up page 01",
9 | "Sign up page 02",
10 | "Sign up page 03",
11 | "Sign up page 04",
12 | "Sign up page 05",
13 | "Sign up page 06",
14 | "Sign up page 07",
15 | "Sign up page 08",
16 | "Sign up page 09",
17 | "Sign up page 10",
18 | "Sign up page 11",
19 |
20 | /// fixme you could add by your group one name fit one page.
21 | ];
22 | const WALK_THROUGH_PAGES = [
23 | "Walk through page 01",
24 | "Walk through page 02",
25 | "Walk through page 03",
26 | "Walk through page 04",
27 | "Walk through page 05",
28 | "Walk through page 06",
29 |
30 | /// fixme you could add by your group one name fit one page.
31 | ];
32 | const NAVIGATION_PAGES = [
33 | "Navigation page 01",
34 | "Navigation page 02",
35 | "Navigation page 03",
36 | "Navigation page 04",
37 | "Navigation page 05",
38 |
39 | /// fixme you could add by your group one name fit one page.
40 | ];
41 | const PROFILE_PAGES = [
42 | "Profile page 01",
43 | "Profile page 02",
44 | "Profile page 03",
45 |
46 | /// fixme you could add by your group one name fit one page.
47 | ];
48 | const FEED_PAGES = [
49 | "Feed page 01",
50 | "Feed page 02",
51 | "Feed page 03",
52 | "Feed page 04",
53 | "Feed page 05",
54 | "Feed page 06",
55 | "Feed page 07",
56 | "Feed page 08",
57 | "Feed page 09",
58 | "Feed page 10",
59 | "Feed page 11",
60 | "Feed page 12",
61 | "Feed page 13",
62 |
63 | /// fixme you could add by your group one name fit one page.
64 | ];
65 | const CHAT_PAGES = [
66 | "Chat page 01",
67 | "Chat page 02",
68 | "Chat page 03",
69 |
70 | /// fixme you could add by your group one name fit one page.
71 | ];
72 | const SHOPPING_PAGES = [
73 | "Shopping page 01",
74 | "Shopping page 02",
75 | "Shopping page 03",
76 | "Shopping page 04",
77 | "Shopping page 05",
78 | "Shopping page 06",
79 | "Shopping page 07",
80 | "Shopping page 08",
81 | "Shopping page 09",
82 | "Shopping page 10",
83 | "Shopping page 11",
84 | "Shopping page 12",
85 | "Shopping page 13",
86 | "Shopping page 14",
87 | "Shopping page 15",
88 | "Shopping page 16",
89 | "Shopping page 17",
90 | "Shopping page 18",
91 | "Shopping page 19",
92 |
93 | /// fixme you could add by your group one name fit one page.
94 | ];
95 | const STATISTIC_PAGES = [
96 | "Statistic page 01",
97 | "Statistic page 02",
98 | "Statistic page 03",
99 |
100 | /// fixme you could add by your group one name fit one page.
101 | ];
102 | const MEDIA_PAGES = [
103 | "Media page 01",
104 | "Media page 02",
105 | "Media page 03",
106 |
107 | /// fixme you could add by your group one name fit one page.
108 | ];
109 |
110 | const CAMERA_PAGES = [
111 | "Camera page 01",
112 |
113 | /// fixme you could add by your group one name fit one page.
114 | ];
115 |
--------------------------------------------------------------------------------
/lib/const/shadow_const.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | const SHADOW = [
4 | BoxShadow(
5 | color: Colors.black12,
6 | blurRadius: 20.0,
7 | spreadRadius: 5.0,
8 | offset: Offset(
9 | 10.0, // horizontal, move right 10
10 | 10.0, // vertical, move down 10
11 | ),
12 | )
13 | ];
14 |
--------------------------------------------------------------------------------
/lib/const/size_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-14
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | const TEXT_LARGE_SIZE = 22.0;
7 | const TEXT_NORMAL_SIZE = 14.0;
8 | const TEXT_SMALL_SIZE = 10.0;
9 |
--------------------------------------------------------------------------------
/lib/const/string_const.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-14
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | ///
7 |
8 | class StringConst {
9 | //strings
10 | static const String APP_NAME = "flutter-ui-nice";
11 | static const String CREATE_BY = "Created By Volunteer";
12 | static const String DEVELOPER = "Volunteer";
13 | static const String PROFESSION = "Flutter Developer";
14 | static const String DEV_EMAIL = "niebin312@gmail.com";
15 | static const String SIGN_UP = "Sing Up";
16 | static const String SIGN_UP_TEXT = "Don't have an account?";
17 | }
18 |
--------------------------------------------------------------------------------
/lib/const/styles.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | TextStyle hintAndValueStyle = TextStyle(
4 | color: Color(0xff353535),
5 | fontWeight: FontWeight.bold,
6 | fontSize: 14.0,
7 | fontFamily: 'Montserrat'
8 | );
--------------------------------------------------------------------------------
/lib/item/Menu.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-15
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | import 'package:flutter/material.dart';
7 |
8 | class Menu {
9 | String title;
10 | IconData icon;
11 | String image;
12 | List items;
13 | BuildContext context;
14 | Color menuColor;
15 |
16 | Menu(
17 | {this.title,
18 | this.icon,
19 | this.image,
20 | this.items,
21 | this.context,
22 | this.menuColor});
23 | }
24 |
--------------------------------------------------------------------------------
/lib/item/menu_stream.dart:
--------------------------------------------------------------------------------
1 | ///
2 | /// Created by NieBin on 18-12-15
3 | /// Github: https://github.com/nb312
4 | /// Email: niebin312@gmail.com
5 | ///
6 | import 'dart:async';
7 | import 'package:flutter/material.dart';
8 | import 'package:flutter_ui_nice/item/Menu.dart';
9 | import 'package:flutter_ui_nice/const/images_const.dart';
10 | import 'package:flutter_ui_nice/const/page_str_const.dart';
11 |
12 | const _MENU_STRINGS = [
13 | {'title': "Sign Up", 'items': SIGN_UP_PAGES},
14 | {'title': "Walk Through", 'items': WALK_THROUGH_PAGES},
15 | {'title': "Navigation", 'items': NAVIGATION_PAGES},
16 | {'title': "Profile", 'items': PROFILE_PAGES},
17 | {'title': "Feed", 'items': FEED_PAGES},
18 | {'title': "Chat", 'items': CHAT_PAGES},
19 | {'title': "Shoppig", 'items': SHOPPING_PAGES},
20 | {'title': "Statistics", 'items': STATISTIC_PAGES},
21 | {'title': "Media", 'items': MEDIA_PAGES},
22 | {'title': "Camera", 'items': CAMERA_PAGES},
23 | ];
24 | const _MENU_COLORS = [
25 | 0xff050505,
26 | 0xffc8c4bd,
27 | 0xffc7d8f4,
28 | 0xff7f5741,
29 | 0xff261d33,
30 | 0xff2a8ccf,
31 | 0xffe19b6b,
32 | 0xffe19b6b,
33 | 0xffddcec2,
34 | 0xff261d33,
35 | ];
36 | const _MENU_ICONS = [
37 | Icons.airplanemode_active,
38 | Icons.live_help,
39 | Icons.location_on,
40 | Icons.account_box,
41 | Icons.feedback,
42 | Icons.chat,
43 | Icons.shopping_cart,
44 | Icons.all_inclusive,
45 | Icons.play_circle_outline,
46 | Icons.linked_camera,
47 | ];
48 | const _IMAGE_PATHS = [
49 | MainImagePath.image_sign_up,
50 | MainImagePath.image_walk_through,
51 | MainImagePath.image_navigation,
52 | MainImagePath.image_profile,
53 | MainImagePath.image_feed,
54 | MainImagePath.image_chat,
55 | MainImagePath.image_shopping,
56 | MainImagePath.image_statistic,
57 | MainImagePath.image_media,
58 | MainImagePath.image_camera,
59 | ];
60 |
61 | class MenuController {
62 | final controller = StreamController>();
63 |
64 | Stream> get menuItems => controller.stream;
65 |
66 | MenuController({List