import React, { Component } from 'react'; import { View, Text, Button } from 'react-native'; import Navigation from 'react-native-navigation'; class SimpleScreen extends Component { constructor(props) { super(props); this.onClickPop = this.onClickPop.bind(this); } render() { return ( {this.props.text || 'Simple Screen'} {this.renderTextFromFunctionInProps()}