const React = require('react'); const { Component } = require('react'); const { View, Text, Button } = require('react-native'); const testIDs = require('../testIDs'); const Navigation = require('react-native-navigation'); class WelcomeScreen extends Component { static get navigationOptions() { return { topBar: { largeTitle: false } }; } constructor(props) { super(props); this.onClickPush = this.onClickPush.bind(this); this.onClickShowModal = this.onClickShowModal.bind(this); this.onClickLifecycleScreen = this.onClickLifecycleScreen.bind(this); this.onClickPushOptionsScreen = this.onClickPushOptionsScreen.bind(this); this.onClickPushOrientationMenuScreen = this.onClickPushOrientationMenuScreen.bind(this); this.onClickBackHandler = this.onClickBackHandler.bind(this); this.onClickPushTopTabsScreen = this.onClickPushTopTabsScreen.bind(this); } render() { return ( {`React Native Navigation!`}