Added navigation to application, internationalization, and sign in screen.

This commit is contained in:
Patrick Fic
2020-08-11 16:42:26 -07:00
parent c7344dd7a2
commit 767233cea3
19 changed files with 1258 additions and 161 deletions

View File

@@ -0,0 +1,15 @@
import React from "react";
import { View, Text, SafeAreaView, Button } from "react-native";
import SignOutButton from "../sign-out-button/sign-out-button.component";
import { purgeStoredState } from "redux-persist";
export default function ScreenSettingsComponent() {
return (
<SafeAreaView>
<View>
<Text>The settings Screen</Text>
<SignOutButton />
<Button title="Purge State" onPress={() => purgeStoredState()} />
</View>
</SafeAreaView>
);
}