Skip to content

Commit f3faf59

Browse files
updated navigation, added drawer, updated changelog
1 parent 1d5cd8b commit f3faf59

21 files changed

+1318
-997
lines changed

App.js

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Provider } from 'react-redux';
22
import React from 'react';
33
import { View, ActivityIndicator, StyleSheet } from 'react-native';
44
import { PersistGate } from 'redux-persist/integration/react';
5+
import { NavigationContainer } from '@react-navigation/native';
56
import { colors } from './src/styles';
67

78
import { store, persistor } from './src/redux/store';
@@ -11,17 +12,19 @@ import AppView from './src/modules/AppViewContainer';
1112
export default function App() {
1213
return (
1314
<Provider store={store}>
14-
<PersistGate
15-
loading={
16-
// eslint-disable-next-line react/jsx-wrap-multilines
17-
<View style={styles.container}>
18-
<ActivityIndicator color={colors.red} />
19-
</View>
20-
}
21-
persistor={persistor}
22-
>
23-
<AppView />
24-
</PersistGate>
15+
<NavigationContainer>
16+
<PersistGate
17+
loading={
18+
// eslint-disable-next-line react/jsx-wrap-multilines
19+
<View style={styles.container}>
20+
<ActivityIndicator color={colors.red} />
21+
</View>
22+
}
23+
persistor={persistor}
24+
>
25+
<AppView />
26+
</PersistGate>
27+
</NavigationContainer>
2528
</Provider>
2629
);
2730
}

assets/images/drawer/calendar.png

274 Bytes
Loading

assets/images/drawer/components.png

233 Bytes
Loading

assets/images/drawer/grids.png

163 Bytes
Loading

assets/images/drawer/home.png

248 Bytes
Loading

assets/images/drawer/menu.png

154 Bytes
Loading

assets/images/drawer/pages.png

360 Bytes
Loading

assets/images/drawer/settings.png

405 Bytes
Loading

assets/images/drawer/user.png

8.03 KB
Loading

assets/images/drawer/user_min.png

4.07 KB
Loading

0 commit comments

Comments
 (0)