import React from 'react'; import { Text, View } from 'react-native'; import Menu, { MenuProvider, MenuOptions, MenuOption, MenuTrigger, } from 'react-native-popup-menu'; import {Scene, Router, Actions} from 'react-native-router-flux'; const Page = () => ( Hello world with react-native-router-flux! Actions.login()} text='Login' /> Actions.register()} text='Register' /> Actions.home()} text='Home' /> ); const NavigatorMenu = () => ( Actions.login()} text='Navigation Login' /> Actions.register()} text='Navigation Register' /> Actions.home()} text='Navigation Home' /> ); class NavigatorExample extends React.Component { render() { return ( ); } } export default NavigatorExample;