Correct color for navbar icons

This commit is contained in:
Imbus 2023-12-14 23:39:53 +01:00
parent 605d0990d3
commit 60c0d4f746

View file

@ -3,12 +3,11 @@ import { Text, View } from "react-native";
import { style } from "./src/util/style"; import { style } from "./src/util/style";
import { PostsContainer } from "./src/components/PostsContainer"; import { PostsContainer } from "./src/components/PostsContainer";
export default function App(): JSX.Element { export default function App(): JSX.Element {
return ( return (
<View style={style.app}> <View style={style.app}>
<StatusBar style="light" />
<Text>Open up App.tsx to start working on your app!</Text> <Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
<PostsContainer /> <PostsContainer />
</View> </View>
); );