Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
Holat committed Sep 1, 2023
1 parent 83babdc commit b59eab3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion app/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,11 @@ function RootLayoutNav() {
<ThemeProvider
value={colorScheme === "dark" ? DarkTheme : DefaultTheme}
>
<Stack>
<Stack
screenOptions={{
animation: "fade_from_bottom",
}}
>
<Stack.Screen name="loginScreen" options={{ headerShown: false }} />
<Stack.Screen name="index" options={{ headerShown: false }} />
<Stack.Screen name="modal" options={{ title: "History" }} />
Expand Down
3 changes: 1 addition & 2 deletions app/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {
View,
Text,
StyleSheet,
StatusBar,
Pressable,
Expand Down Expand Up @@ -90,7 +89,7 @@ const Home = () => {

const styles = StyleSheet.create({
cont: {
backgroundColor: "#5F57FF",
backgroundColor: light.background2,
flex: 1,
paddingTop: StatusBar.currentHeight,
},
Expand Down

0 comments on commit b59eab3

Please sign in to comment.