import React from 'react'; import {StyleSheet, ScrollView, Text} from 'react-native'; import Row from '../components/Row'; class Transitions extends React.Component { showCollapsingHeader = () => { this.props.navigator.showModal({ title: 'Collapsing Header', screen: 'example.Transitions.CollapsingHeader', }); }; showSharedElementTransitions = () => { this.props.navigator.showModal({ title: 'Shared Element Transition Examples', screen: 'example.Transitions.SharedElementTransitions', }); }; render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, }, }); export default Transitions;