commit 4bf78488aa3c963bc5d8ae7b414d869e78dfff1d Author: Hazem Krimi Date: Thu Sep 17 22:15:59 2020 +0100 Initial commit diff --git a/.buckconfig b/.buckconfig new file mode 100644 index 0000000..934256c --- /dev/null +++ b/.buckconfig @@ -0,0 +1,6 @@ + +[android] + target = Google Inc.:Google APIs:23 + +[maven_repositories] + central = https://repo1.maven.org/maven2 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d42ff18 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.pbxproj -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..288597d --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# OSX +# +.DS_Store + +# Xcode +# +release/ +build/ +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml + +# node.js +# +node_modules/ +npm-debug.log +yarn-error.log + +# BUCK +buck-out/ +\.buckd/ +*.keystore + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/ + +*/fastlane/report.xml +*/fastlane/Preview.html +*/fastlane/screenshots + +# Bundle artifacts +*.jsbundle + +# CocoaPods +/ios/Pods/ + +# Expo +.expo/* +web-build/ diff --git a/App.js b/App.js new file mode 100644 index 0000000..54ef1c8 --- /dev/null +++ b/App.js @@ -0,0 +1,26 @@ +import React from 'react'; +import { DefaultTheme, Provider as PaperProvider } from 'react-native-paper'; +import { StatusBar } from 'expo-status-bar'; +import Nav from './components/Nav'; +import Home from './screens/Home'; + +const theme = { + ...DefaultTheme, + colors: { + ...DefaultTheme.colors, + primary: '#060630', + background: '#FFFFFF' + }, +}; + +export default App = () => { + return ( + <> + + +