├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── codehq │ │ │ │ └── facebook_clone │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── icons │ ├── fb_logo.png │ ├── meta.png │ └── meta_logo.png ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── RunnerTests │ └── RunnerTests.swift └── firebase_app_id_file.json ├── lib ├── config │ ├── routes │ │ └── routes.dart │ └── themes │ │ └── app_theme.dart ├── core │ ├── constants │ │ ├── app_colors.dart │ │ ├── constants.dart │ │ ├── extensions.dart │ │ ├── firebaes_collection_names.dart │ │ ├── firebase_field_names.dart │ │ └── storage_folder_names.dart │ ├── screens │ │ ├── empty_screen.dart │ │ ├── error_screen.dart │ │ ├── home_screen.dart │ │ ├── loader.dart │ │ └── profile_screen.dart │ ├── utils │ │ └── utils.dart │ └── widgets │ │ ├── pick_image_widget.dart │ │ ├── post_info_tile.dart │ │ ├── round_button.dart │ │ ├── round_icon_button.dart │ │ └── round_text_field.dart ├── features │ ├── auth │ │ ├── models │ │ │ └── user.dart │ │ ├── presentation │ │ │ ├── screens │ │ │ │ ├── create_account_screee.dart │ │ │ │ ├── login_screen.dart │ │ │ │ └── verify_email_screen.dart │ │ │ └── widgets │ │ │ │ ├── birthday_picker.dart │ │ │ │ ├── gender_picker.dart │ │ │ │ └── gender_radio_tile.dart │ │ ├── providers │ │ │ ├── auth_provider.dart │ │ │ ├── get_user_info_as_stream_by_id_provider.dart │ │ │ ├── get_user_info_as_stream_provider.dart │ │ │ ├── get_user_info_by_id_provider.dart │ │ │ └── get_user_info_provider.dart │ │ ├── repository │ │ │ └── auth_repository.dart │ │ └── utils │ │ │ └── utils.dart │ ├── chat │ │ ├── models │ │ │ ├── chatroom.dart │ │ │ └── message.dart │ │ ├── presentation │ │ │ ├── screens │ │ │ │ ├── chat_screen.dart │ │ │ │ └── chats_screen.dart │ │ │ └── widgets │ │ │ │ ├── chat_tile.dart │ │ │ │ ├── chats_list.dart │ │ │ │ ├── chats_user_info.dart │ │ │ │ ├── message_contents.dart │ │ │ │ ├── messages_list.dart │ │ │ │ ├── my_profile_pic.dart │ │ │ │ ├── received_message.dart │ │ │ │ └── sent_message.dart │ │ ├── providers │ │ │ ├── chat_provider.dart │ │ │ ├── get_all_chats_provider.dart │ │ │ └── get_all_messages_provider.dart │ │ └── repository │ │ │ └── chat_repository.dart │ ├── friends │ │ ├── presentation │ │ │ ├── screens │ │ │ │ └── friends_screen.dart │ │ │ └── widgets │ │ │ │ ├── add_friend_button.dart │ │ │ │ ├── friend_tile.dart │ │ │ │ ├── friends_list.dart │ │ │ │ ├── request_tile.dart │ │ │ │ └── requests_list.dart │ │ ├── providers │ │ │ ├── friend_provider.dart │ │ │ ├── get_all_friend_requests_provider.dart │ │ │ └── get_all_friends_provider.dart │ │ └── repository │ │ │ └── friend_repository.dart │ ├── posts │ │ ├── models │ │ │ ├── comment.dart │ │ │ └── post.dart │ │ ├── presentation │ │ │ ├── screens │ │ │ │ ├── comments_screen.dart │ │ │ │ ├── create_post_screen.dart │ │ │ │ ├── posts_screen.dart │ │ │ │ └── videos_screen.dart │ │ │ └── widgets │ │ │ │ ├── comment_text_field.dart │ │ │ │ ├── comment_tile.dart │ │ │ │ ├── comments_list.dart │ │ │ │ ├── icon_text_button.dart │ │ │ │ ├── image_video_view.dart │ │ │ │ ├── make_post_widget.dart │ │ │ │ ├── network_video_view.dart │ │ │ │ ├── post_Image_video_view.dart │ │ │ │ ├── post_tile.dart │ │ │ │ ├── profile_info.dart │ │ │ │ ├── round_like_icon.dart │ │ │ │ ├── round_profile_tile.dart │ │ │ │ └── video_view.dart │ │ ├── providers │ │ │ ├── get_all_comments_provider.dart │ │ │ ├── get_all_posts_provider.dart │ │ │ ├── get_all_videos_provider.dart │ │ │ └── posts_provider.dart │ │ └── repostiory │ │ │ └── post_repository.dart │ └── story │ │ ├── models │ │ └── story.dart │ │ ├── presentation │ │ ├── screens │ │ │ ├── create_story_screen.dart │ │ │ ├── stories_view.dart │ │ │ └── story_view_screen.dart │ │ └── widgets │ │ │ ├── add_story_tile.dart │ │ │ └── story_tile.dart │ │ ├── providers │ │ ├── get_all_stories_provider.dart │ │ └── story_provider.dart │ │ └── repository │ │ └── story_repository.dart ├── firebase_options.dart └── main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/codehq/facebook_clone/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/kotlin/com/codehq/facebook_clone/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/fb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/assets/icons/fb_logo.png -------------------------------------------------------------------------------- /assets/icons/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/assets/icons/meta.png -------------------------------------------------------------------------------- /assets/icons/meta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/assets/icons/meta_logo.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/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/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /lib/config/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/config/routes/routes.dart -------------------------------------------------------------------------------- /lib/config/themes/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/config/themes/app_theme.dart -------------------------------------------------------------------------------- /lib/core/constants/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/app_colors.dart -------------------------------------------------------------------------------- /lib/core/constants/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/constants.dart -------------------------------------------------------------------------------- /lib/core/constants/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/extensions.dart -------------------------------------------------------------------------------- /lib/core/constants/firebaes_collection_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/firebaes_collection_names.dart -------------------------------------------------------------------------------- /lib/core/constants/firebase_field_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/firebase_field_names.dart -------------------------------------------------------------------------------- /lib/core/constants/storage_folder_names.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/constants/storage_folder_names.dart -------------------------------------------------------------------------------- /lib/core/screens/empty_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/screens/empty_screen.dart -------------------------------------------------------------------------------- /lib/core/screens/error_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/screens/error_screen.dart -------------------------------------------------------------------------------- /lib/core/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/core/screens/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/screens/loader.dart -------------------------------------------------------------------------------- /lib/core/screens/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/screens/profile_screen.dart -------------------------------------------------------------------------------- /lib/core/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/utils/utils.dart -------------------------------------------------------------------------------- /lib/core/widgets/pick_image_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/widgets/pick_image_widget.dart -------------------------------------------------------------------------------- /lib/core/widgets/post_info_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/widgets/post_info_tile.dart -------------------------------------------------------------------------------- /lib/core/widgets/round_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/widgets/round_button.dart -------------------------------------------------------------------------------- /lib/core/widgets/round_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/widgets/round_icon_button.dart -------------------------------------------------------------------------------- /lib/core/widgets/round_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/core/widgets/round_text_field.dart -------------------------------------------------------------------------------- /lib/features/auth/models/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/models/user.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/screens/create_account_screee.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/screens/create_account_screee.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/screens/verify_email_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/screens/verify_email_screen.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/birthday_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/widgets/birthday_picker.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/gender_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/widgets/gender_picker.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/gender_radio_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/presentation/widgets/gender_radio_tile.dart -------------------------------------------------------------------------------- /lib/features/auth/providers/auth_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/providers/auth_provider.dart -------------------------------------------------------------------------------- /lib/features/auth/providers/get_user_info_as_stream_by_id_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/providers/get_user_info_as_stream_by_id_provider.dart -------------------------------------------------------------------------------- /lib/features/auth/providers/get_user_info_as_stream_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/providers/get_user_info_as_stream_provider.dart -------------------------------------------------------------------------------- /lib/features/auth/providers/get_user_info_by_id_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/providers/get_user_info_by_id_provider.dart -------------------------------------------------------------------------------- /lib/features/auth/providers/get_user_info_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/providers/get_user_info_provider.dart -------------------------------------------------------------------------------- /lib/features/auth/repository/auth_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/repository/auth_repository.dart -------------------------------------------------------------------------------- /lib/features/auth/utils/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/auth/utils/utils.dart -------------------------------------------------------------------------------- /lib/features/chat/models/chatroom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/models/chatroom.dart -------------------------------------------------------------------------------- /lib/features/chat/models/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/models/message.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/screens/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/screens/chat_screen.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/screens/chats_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/screens/chats_screen.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/chat_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/chat_tile.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/chats_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/chats_list.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/chats_user_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/chats_user_info.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/message_contents.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/message_contents.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/messages_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/messages_list.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/my_profile_pic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/my_profile_pic.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/received_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/received_message.dart -------------------------------------------------------------------------------- /lib/features/chat/presentation/widgets/sent_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/presentation/widgets/sent_message.dart -------------------------------------------------------------------------------- /lib/features/chat/providers/chat_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/providers/chat_provider.dart -------------------------------------------------------------------------------- /lib/features/chat/providers/get_all_chats_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/providers/get_all_chats_provider.dart -------------------------------------------------------------------------------- /lib/features/chat/providers/get_all_messages_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/providers/get_all_messages_provider.dart -------------------------------------------------------------------------------- /lib/features/chat/repository/chat_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/chat/repository/chat_repository.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/screens/friends_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/screens/friends_screen.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/widgets/add_friend_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/widgets/add_friend_button.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/widgets/friend_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/widgets/friend_tile.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/widgets/friends_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/widgets/friends_list.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/widgets/request_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/widgets/request_tile.dart -------------------------------------------------------------------------------- /lib/features/friends/presentation/widgets/requests_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/presentation/widgets/requests_list.dart -------------------------------------------------------------------------------- /lib/features/friends/providers/friend_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/providers/friend_provider.dart -------------------------------------------------------------------------------- /lib/features/friends/providers/get_all_friend_requests_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/providers/get_all_friend_requests_provider.dart -------------------------------------------------------------------------------- /lib/features/friends/providers/get_all_friends_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/providers/get_all_friends_provider.dart -------------------------------------------------------------------------------- /lib/features/friends/repository/friend_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/friends/repository/friend_repository.dart -------------------------------------------------------------------------------- /lib/features/posts/models/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/models/comment.dart -------------------------------------------------------------------------------- /lib/features/posts/models/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/models/post.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/screens/comments_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/screens/comments_screen.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/screens/create_post_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/screens/create_post_screen.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/screens/posts_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/screens/posts_screen.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/screens/videos_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/screens/videos_screen.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/comment_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/comment_text_field.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/comment_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/comment_tile.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/comments_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/comments_list.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/icon_text_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/icon_text_button.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/image_video_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/image_video_view.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/make_post_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/make_post_widget.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/network_video_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/network_video_view.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/post_Image_video_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/post_Image_video_view.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/post_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/post_tile.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/profile_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/profile_info.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/round_like_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/round_like_icon.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/round_profile_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/round_profile_tile.dart -------------------------------------------------------------------------------- /lib/features/posts/presentation/widgets/video_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/presentation/widgets/video_view.dart -------------------------------------------------------------------------------- /lib/features/posts/providers/get_all_comments_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/providers/get_all_comments_provider.dart -------------------------------------------------------------------------------- /lib/features/posts/providers/get_all_posts_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/providers/get_all_posts_provider.dart -------------------------------------------------------------------------------- /lib/features/posts/providers/get_all_videos_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/providers/get_all_videos_provider.dart -------------------------------------------------------------------------------- /lib/features/posts/providers/posts_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/providers/posts_provider.dart -------------------------------------------------------------------------------- /lib/features/posts/repostiory/post_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/posts/repostiory/post_repository.dart -------------------------------------------------------------------------------- /lib/features/story/models/story.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/models/story.dart -------------------------------------------------------------------------------- /lib/features/story/presentation/screens/create_story_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/presentation/screens/create_story_screen.dart -------------------------------------------------------------------------------- /lib/features/story/presentation/screens/stories_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/presentation/screens/stories_view.dart -------------------------------------------------------------------------------- /lib/features/story/presentation/screens/story_view_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/presentation/screens/story_view_screen.dart -------------------------------------------------------------------------------- /lib/features/story/presentation/widgets/add_story_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/presentation/widgets/add_story_tile.dart -------------------------------------------------------------------------------- /lib/features/story/presentation/widgets/story_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/presentation/widgets/story_tile.dart -------------------------------------------------------------------------------- /lib/features/story/providers/get_all_stories_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/providers/get_all_stories_provider.dart -------------------------------------------------------------------------------- /lib/features/story/providers/story_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/providers/story_provider.dart -------------------------------------------------------------------------------- /lib/features/story/repository/story_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/features/story/repository/story_repository.dart -------------------------------------------------------------------------------- /lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/firebase_options.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/lib/main.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoderrHQ/facebook_clone/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------