-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
28 lines (23 loc) · 795 Bytes
/
App.js
File metadata and controls
28 lines (23 loc) · 795 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
25
26
27
28
import React from 'react';
import { StatusBar } from 'react-native';
import ScreenNavigator from './todoapp/components/navigation/ScreenNavigator';
// x Daniel, Tutti i componenti esterni:
// Popup: https://github.com/react-native-community/react-native-modal
// Agenda: https://github.com/wix/react-native-calendars
// Toolbar: https://github.com/xotahal/react-native-material-ui/blob/master/docs/Toolbar.md
// Side menu: https://github.com/react-native-community/react-native-side-menu
// Navigation: https://facebook.github.io/react-native/docs/navigation
export default class App extends React.Component {
constructor() {
super();
init();
}
render() {
return (
<ScreenNavigator></ScreenNavigator>
);
}
}
function init() {
StatusBar.setHidden(true);
}