Update example to SDK32

This commit is contained in:
Brent Vatne
2019-01-16 21:37:06 -08:00
parent fc02a20773
commit de3f806595
8 changed files with 1666 additions and 1230 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import { View } from 'react-native';
import { createStackNavigator } from 'react-navigation-stack';
class Screen extends React.Component {
static navigationOptions = {
header: null,
};
render() {
return (
<View style={{ flex: 1, backgroundColor: 'red' }} />
)
}
}
export default createStackNavigator({ Screen });