import React from 'react'; import {StyleSheet, ScrollView} from 'react-native'; import Row from '../../components/Row'; class Transitions extends React.Component { showCardsExample = () => { this.props.navigator.showModal({ title: 'Cards', screen: 'example.Transitions.SharedElementTransitions.Cards', }); }; showProfileExample = () => { this.props.navigator.showModal({ title: 'Profiles', screen: 'example.Transitions.SharedElementTransitions.Profiles', }); }; showMasonryExample = () => { this.props.navigator.showModal({ title: 'Masonry', screen: 'example.Transitions.SharedElementTransitions.Masonry', }); }; render() { return ( {/**/} ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#ffffff', }, }); export default Transitions;