Revize b5599ba1
Přidáno uživatelem Fantič před asi 2 roky(ů)
App.tsx | ||
---|---|---|
1 |
import { StatusBar } from 'expo-status-bar' |
|
1 |
|
|
2 | 2 |
import { StyleSheet, Text, View } from 'react-native' |
3 | 3 |
import { NativeBaseProvider, Box } from "native-base" |
4 |
import LoginPage from './src/pages/LoginPage' |
|
5 | 4 |
import { Provider } from "react-redux" |
6 | 5 |
import store from "./src/stores/store" |
6 |
import ItemViewPage from './src/pages/ItemViewPage' |
|
7 | 7 |
|
8 | 8 |
export default function App() { |
9 | 9 |
return ( |
10 | 10 |
<Provider store={store}> |
11 | 11 |
<NativeBaseProvider> |
12 |
<LoginPage />
|
|
12 |
<ItemViewPage />
|
|
13 | 13 |
</NativeBaseProvider> |
14 | 14 |
</Provider> |
15 | 15 |
) |
Také k dispozici: Unified diff
#re 10343 ItemView page: bottom tab