├── .buckconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.tsx ├── README.md ├── __tests__ └── App-test.tsx ├── _prettierrc.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── facebookui │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 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 │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── facebookUI-tvOS │ └── Info.plist ├── facebookUI-tvOSTests │ └── Info.plist ├── facebookUI.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── facebookUI-tvOS.xcscheme │ │ └── facebookUI.xcscheme ├── facebookUI.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── facebookUI │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── facebookUITests │ ├── Info.plist │ └── facebookUITests.m ├── metro.config.js ├── package.json ├── src ├── assets │ ├── images │ │ ├── ic1.png │ │ ├── ic10.png │ │ ├── ic2.png │ │ ├── ic3.png │ │ ├── ic4.png │ │ ├── ic5.png │ │ ├── ic6.png │ │ ├── ic7.png │ │ ├── ic8.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.png │ │ ├── photo4.png │ │ ├── photo5.png │ │ ├── photo6.png │ │ ├── photo7.png │ │ ├── post1.png │ │ ├── post2.png │ │ ├── post3.png │ │ ├── post4.png │ │ ├── post5.png │ │ ├── post6.png │ │ ├── post7.png │ │ ├── post8.png │ │ └── post9.png │ └── svg │ │ ├── camera.svg │ │ ├── camera_black.svg │ │ ├── comment.svg │ │ ├── edit.svg │ │ ├── list.svg │ │ ├── live.svg │ │ ├── location.svg │ │ ├── logo.svg │ │ ├── more.svg │ │ ├── picture.svg │ │ ├── play.svg │ │ ├── play_video.svg │ │ ├── share.svg │ │ └── thumb-up.svg ├── components │ ├── AvatarInput │ │ └── index.tsx │ ├── CameraButton │ │ └── index.tsx │ ├── ParallaxBackground │ │ └── index.tsx │ ├── ParallaxScrollView │ │ └── index.tsx │ ├── PostItem │ │ └── index.tsx │ ├── ProfileHeader │ │ └── index.tsx │ ├── ProfileInfos │ │ ├── FriendList │ │ │ ├── ProfileFriendItem │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── PhotoList │ │ │ ├── ProfilePhotoItem │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── RoundedActionButton │ │ └── index.tsx │ ├── icons │ │ └── Logo.tsx │ ├── separator │ │ └── index.tsx │ └── storyItems │ │ ├── index.tsx │ │ └── storyItem │ │ └── index.tsx ├── containers │ └── hoc │ │ └── AuxHOC.tsx ├── navigation │ └── navigation.tsx ├── screens │ ├── Home │ │ └── index.tsx │ ├── Intro │ │ └── index.tsx │ └── Profile │ │ ├── index.tsx │ │ └── userInfo.tsx ├── screenshot │ ├── Demo1.png │ ├── Demo2.png │ └── Facebook.png ├── test.html ├── utils.tsx └── utils │ ├── avatars.tsx │ ├── photoItems.tsx │ └── posts.tsx ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/_prettierrc.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/facebookui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/java/com/facebookui/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/facebookui/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/java/com/facebookui/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/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/Doha26/Facebook-React-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/facebookUI-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/facebookUI-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/facebookUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/facebookUI.xcodeproj/xcshareddata/xcschemes/facebookUI-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI.xcodeproj/xcshareddata/xcschemes/facebookUI-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/facebookUI.xcodeproj/xcshareddata/xcschemes/facebookUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI.xcodeproj/xcshareddata/xcschemes/facebookUI.xcscheme -------------------------------------------------------------------------------- /ios/facebookUI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/facebookUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/facebookUI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/AppDelegate.h -------------------------------------------------------------------------------- /ios/facebookUI/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/AppDelegate.m -------------------------------------------------------------------------------- /ios/facebookUI/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/facebookUI/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/facebookUI/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/facebookUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/Info.plist -------------------------------------------------------------------------------- /ios/facebookUI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUI/main.m -------------------------------------------------------------------------------- /ios/facebookUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUITests/Info.plist -------------------------------------------------------------------------------- /ios/facebookUITests/facebookUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/ios/facebookUITests/facebookUITests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/images/ic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic1.png -------------------------------------------------------------------------------- /src/assets/images/ic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic10.png -------------------------------------------------------------------------------- /src/assets/images/ic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic2.png -------------------------------------------------------------------------------- /src/assets/images/ic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic3.png -------------------------------------------------------------------------------- /src/assets/images/ic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic4.png -------------------------------------------------------------------------------- /src/assets/images/ic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic5.png -------------------------------------------------------------------------------- /src/assets/images/ic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic6.png -------------------------------------------------------------------------------- /src/assets/images/ic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic7.png -------------------------------------------------------------------------------- /src/assets/images/ic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/ic8.png -------------------------------------------------------------------------------- /src/assets/images/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo1.png -------------------------------------------------------------------------------- /src/assets/images/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo2.png -------------------------------------------------------------------------------- /src/assets/images/photo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo3.png -------------------------------------------------------------------------------- /src/assets/images/photo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo4.png -------------------------------------------------------------------------------- /src/assets/images/photo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo5.png -------------------------------------------------------------------------------- /src/assets/images/photo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo6.png -------------------------------------------------------------------------------- /src/assets/images/photo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/photo7.png -------------------------------------------------------------------------------- /src/assets/images/post1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post1.png -------------------------------------------------------------------------------- /src/assets/images/post2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post2.png -------------------------------------------------------------------------------- /src/assets/images/post3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post3.png -------------------------------------------------------------------------------- /src/assets/images/post4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post4.png -------------------------------------------------------------------------------- /src/assets/images/post5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post5.png -------------------------------------------------------------------------------- /src/assets/images/post6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post6.png -------------------------------------------------------------------------------- /src/assets/images/post7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post7.png -------------------------------------------------------------------------------- /src/assets/images/post8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post8.png -------------------------------------------------------------------------------- /src/assets/images/post9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/images/post9.png -------------------------------------------------------------------------------- /src/assets/svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/camera.svg -------------------------------------------------------------------------------- /src/assets/svg/camera_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/camera_black.svg -------------------------------------------------------------------------------- /src/assets/svg/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/comment.svg -------------------------------------------------------------------------------- /src/assets/svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/edit.svg -------------------------------------------------------------------------------- /src/assets/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/list.svg -------------------------------------------------------------------------------- /src/assets/svg/live.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/live.svg -------------------------------------------------------------------------------- /src/assets/svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/location.svg -------------------------------------------------------------------------------- /src/assets/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/logo.svg -------------------------------------------------------------------------------- /src/assets/svg/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/more.svg -------------------------------------------------------------------------------- /src/assets/svg/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/picture.svg -------------------------------------------------------------------------------- /src/assets/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/play.svg -------------------------------------------------------------------------------- /src/assets/svg/play_video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/play_video.svg -------------------------------------------------------------------------------- /src/assets/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/share.svg -------------------------------------------------------------------------------- /src/assets/svg/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/assets/svg/thumb-up.svg -------------------------------------------------------------------------------- /src/components/AvatarInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/AvatarInput/index.tsx -------------------------------------------------------------------------------- /src/components/CameraButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/CameraButton/index.tsx -------------------------------------------------------------------------------- /src/components/ParallaxBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ParallaxBackground/index.tsx -------------------------------------------------------------------------------- /src/components/ParallaxScrollView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ParallaxScrollView/index.tsx -------------------------------------------------------------------------------- /src/components/PostItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/PostItem/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileHeader/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileInfos/FriendList/ProfileFriendItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileInfos/FriendList/ProfileFriendItem/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileInfos/FriendList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileInfos/FriendList/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileInfos/PhotoList/ProfilePhotoItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileInfos/PhotoList/ProfilePhotoItem/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileInfos/PhotoList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileInfos/PhotoList/index.tsx -------------------------------------------------------------------------------- /src/components/ProfileInfos/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/ProfileInfos/index.tsx -------------------------------------------------------------------------------- /src/components/RoundedActionButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/RoundedActionButton/index.tsx -------------------------------------------------------------------------------- /src/components/icons/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/icons/Logo.tsx -------------------------------------------------------------------------------- /src/components/separator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/separator/index.tsx -------------------------------------------------------------------------------- /src/components/storyItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/storyItems/index.tsx -------------------------------------------------------------------------------- /src/components/storyItems/storyItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/components/storyItems/storyItem/index.tsx -------------------------------------------------------------------------------- /src/containers/hoc/AuxHOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/containers/hoc/AuxHOC.tsx -------------------------------------------------------------------------------- /src/navigation/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/navigation/navigation.tsx -------------------------------------------------------------------------------- /src/screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screens/Home/index.tsx -------------------------------------------------------------------------------- /src/screens/Intro/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screens/Intro/index.tsx -------------------------------------------------------------------------------- /src/screens/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screens/Profile/index.tsx -------------------------------------------------------------------------------- /src/screens/Profile/userInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screens/Profile/userInfo.tsx -------------------------------------------------------------------------------- /src/screenshot/Demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screenshot/Demo1.png -------------------------------------------------------------------------------- /src/screenshot/Demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screenshot/Demo2.png -------------------------------------------------------------------------------- /src/screenshot/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/screenshot/Facebook.png -------------------------------------------------------------------------------- /src/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/test.html -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /src/utils/avatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/utils/avatars.tsx -------------------------------------------------------------------------------- /src/utils/photoItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/utils/photoItems.tsx -------------------------------------------------------------------------------- /src/utils/posts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/src/utils/posts.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Doha26/Facebook-React-native/HEAD/yarn.lock --------------------------------------------------------------------------------