/** * 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. * * @flow */ '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((char, i) => )} ); } }); var styles = StyleSheet.create({ overlay: { backgroundColor: '#aaccff', borderRadius: 10, borderWidth: 0.5, opacity: 0.5, padding: 5, }, }); module.exports = LayoutExample;