├── .chat_shot.jpeg ├── .gitignore ├── .metadata ├── .stories_shot.jpeg ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ ├── release.jks │ ├── release │ │ └── output.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── messenger_ui │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── key.properties └── settings.gradle ├── assets ├── fonts │ ├── Nunito-Black.ttf │ ├── Nunito-Bold.ttf │ ├── Nunito-Regular.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ └── Roboto-Regular.ttf └── images │ ├── img_lights.jpg │ ├── list_friend │ ├── 1.jpeg │ ├── 1.jpg │ ├── 2.jpeg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg │ ├── list_popular │ ├── 1.jpg │ ├── 10.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg │ └── user_account │ ├── 4.jpeg │ └── me.jpg ├── home_shot.jpg ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── main.dart └── src │ ├── app.dart │ ├── customIcons │ └── custom_icons.dart │ ├── data │ └── list_friend_data.dart │ ├── models │ ├── account_user.dart │ ├── list_friend_model.dart │ └── popular_list.dart │ ├── routes │ └── routes.dart │ ├── screen │ ├── chat_detail │ │ └── chat_detail.dart │ ├── chats │ │ ├── list_friend.dart │ │ └── widgets │ │ │ ├── conversation_item.dart │ │ │ ├── search_bar.dart │ │ │ └── stories_list.dart │ ├── discovery │ │ ├── list_discovery.dart │ │ └── widgets │ │ │ ├── popular_item.dart │ │ │ ├── search_bar.dart │ │ │ └── stories_list.dart │ ├── home │ │ └── home.dart │ ├── people │ │ ├── list_people.dart │ │ └── widgets │ │ │ └── people_card.dart │ └── profile │ │ └── profile.dart │ └── widgets │ ├── app_theme.dart │ ├── messenger_app_bar │ ├── app_bar_network_rounded_image.dart │ ├── app_bar_title.dart │ └── messenger_app_bar.dart │ └── messenger_app_bar_action │ ├── app_bar_network_rounded_image.dart │ ├── app_bar_title.dart │ └── messenger_app_bar.dart ├── pubspec.lock └── pubspec.yaml /.chat_shot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/.chat_shot.jpeg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/.metadata -------------------------------------------------------------------------------- /.stories_shot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/.stories_shot.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/release.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/release.jks -------------------------------------------------------------------------------- /android/app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/release/output.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/messenger_ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/kotlin/com/example/messenger_ui/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/key.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/key.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/Nunito-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Nunito-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Nunito-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/images/img_lights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/img_lights.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/1.jpeg -------------------------------------------------------------------------------- /assets/images/list_friend/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/1.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/2.jpeg -------------------------------------------------------------------------------- /assets/images/list_friend/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/2.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/3.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/4.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/5.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/6.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/7.jpg -------------------------------------------------------------------------------- /assets/images/list_friend/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_friend/8.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/1.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/10.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/2.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/3.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/4.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/5.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/6.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/7.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/8.jpg -------------------------------------------------------------------------------- /assets/images/list_popular/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/list_popular/9.jpg -------------------------------------------------------------------------------- /assets/images/user_account/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/user_account/4.jpeg -------------------------------------------------------------------------------- /assets/images/user_account/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/assets/images/user_account/me.jpg -------------------------------------------------------------------------------- /home_shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/home_shot.jpg -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/app.dart -------------------------------------------------------------------------------- /lib/src/customIcons/custom_icons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/customIcons/custom_icons.dart -------------------------------------------------------------------------------- /lib/src/data/list_friend_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/data/list_friend_data.dart -------------------------------------------------------------------------------- /lib/src/models/account_user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/models/account_user.dart -------------------------------------------------------------------------------- /lib/src/models/list_friend_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/models/list_friend_model.dart -------------------------------------------------------------------------------- /lib/src/models/popular_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/models/popular_list.dart -------------------------------------------------------------------------------- /lib/src/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/routes/routes.dart -------------------------------------------------------------------------------- /lib/src/screen/chat_detail/chat_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/chat_detail/chat_detail.dart -------------------------------------------------------------------------------- /lib/src/screen/chats/list_friend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/chats/list_friend.dart -------------------------------------------------------------------------------- /lib/src/screen/chats/widgets/conversation_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/chats/widgets/conversation_item.dart -------------------------------------------------------------------------------- /lib/src/screen/chats/widgets/search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/chats/widgets/search_bar.dart -------------------------------------------------------------------------------- /lib/src/screen/chats/widgets/stories_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/chats/widgets/stories_list.dart -------------------------------------------------------------------------------- /lib/src/screen/discovery/list_discovery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/discovery/list_discovery.dart -------------------------------------------------------------------------------- /lib/src/screen/discovery/widgets/popular_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/discovery/widgets/popular_item.dart -------------------------------------------------------------------------------- /lib/src/screen/discovery/widgets/search_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/discovery/widgets/search_bar.dart -------------------------------------------------------------------------------- /lib/src/screen/discovery/widgets/stories_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/discovery/widgets/stories_list.dart -------------------------------------------------------------------------------- /lib/src/screen/home/home.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/home/home.dart -------------------------------------------------------------------------------- /lib/src/screen/people/list_people.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/people/list_people.dart -------------------------------------------------------------------------------- /lib/src/screen/people/widgets/people_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/people/widgets/people_card.dart -------------------------------------------------------------------------------- /lib/src/screen/profile/profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/screen/profile/profile.dart -------------------------------------------------------------------------------- /lib/src/widgets/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/app_theme.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar/app_bar_network_rounded_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar/app_bar_network_rounded_image.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar/app_bar_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar/app_bar_title.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar/messenger_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar/messenger_app_bar.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar_action/app_bar_network_rounded_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar_action/app_bar_network_rounded_image.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar_action/app_bar_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar_action/app_bar_title.dart -------------------------------------------------------------------------------- /lib/src/widgets/messenger_app_bar_action/messenger_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/lib/src/widgets/messenger_app_bar_action/messenger_app_bar.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flutterforsale/flutter-messenger-ui/HEAD/pubspec.yaml --------------------------------------------------------------------------------