/** * Copyright 2004-present Facebook. All Rights Reserved. * * @providesModule LayoutExample */ 'use strict'; var React = require('react-native'); var { StyleSheet, Text, View, } = React; var UIExplorerBlock = require('./UIExplorerBlock'); var UIExplorerPage = require('./UIExplorerPage'); var Circle = React.createClass({ render: function() { var size = this.props.size || 20; return ( ); } }); var CircleBlock = React.createClass({ render: function() { var circleStyle = { flexDirection: 'row', backgroundColor: '#f6f7f8', borderWidth: 0.5, borderColor: '#d6d7da', marginBottom: 2, }; return ( {this.props.children} ); } }); var LayoutExample = React.createClass({ statics: { title: 'Layout - Flexbox', description: 'Examples of using the flexbox API to layout views.' }, render: function() { return ( row column {'top: 15, left: 160'} flex-start center flex-end space-between space-around flex-start center flex-end {'oooooooooooooooo'.split('').map(() => )} ); } }); var styles = StyleSheet.create({ overlay: { backgroundColor: '#aaccff', borderRadius: 10, borderWidth: 0.5, opacity: 0.5, padding: 5, }, }); module.exports = LayoutExample;