2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* @providesModule UIExplorerApp
|
2015-03-23 22:07:33 +00:00
|
|
|
* @flow
|
2015-01-30 01:10:49 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-03-23 17:06:16 +00:00
|
|
|
var React = require('react-native');
|
2015-01-30 01:10:49 +00:00
|
|
|
var UIExplorerList = require('./UIExplorerList');
|
|
|
|
|
|
|
|
var {
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry,
|
2015-01-30 01:10:49 +00:00
|
|
|
NavigatorIOS,
|
|
|
|
StyleSheet,
|
|
|
|
} = React;
|
|
|
|
|
|
|
|
|
|
|
|
var UIExplorerApp = React.createClass({
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2015-01-30 01:10:49 +00:00
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<NavigatorIOS
|
|
|
|
style={styles.container}
|
|
|
|
initialRoute={{
|
|
|
|
title: 'UIExplorer',
|
|
|
|
component: UIExplorerList,
|
|
|
|
}}
|
|
|
|
itemWrapperStyle={styles.itemWrapper}
|
2015-03-12 19:51:44 +00:00
|
|
|
tintColor='#008888'
|
|
|
|
/>
|
2015-01-30 01:10:49 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
},
|
|
|
|
itemWrapper: {
|
|
|
|
backgroundColor: '#eaeaea',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-02-19 14:57:05 +00:00
|
|
|
AppRegistry.registerComponent('UIExplorerApp', () => UIExplorerApp);
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
module.exports = UIExplorerApp;
|