-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWrapped.tsx
More file actions
24 lines (21 loc) · 768 Bytes
/
Wrapped.tsx
File metadata and controls
24 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import {ScrollView, StyleSheet, Text, View} from 'react-native';
import { NavigationContainer } from '@react-navigation/native';
import MainBottomNav from "./components/MainBottomNav";
import {createNativeStackNavigator} from "@react-navigation/native-stack";
import StackNav from "./components/StackNav";
import TrendingDetails from "./components/pages/TrendingDetails";
const Stack = createNativeStackNavigator();
import Container from "./components/Container";
export default function Wrapped() {
return (
<NavigationContainer>
<MainBottomNav />
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'red',
},
});