import React, {Component} from 'react'; import { StyleSheet, Text, View, TouchableOpacity, Dimensions } from 'react-native'; export default class LightBoxScreen extends Component { constructor(props) { super(props); } render() { return ( This is a LightBox! { this.props.greeting && {this.props.greeting} } this.onDismissPress()}> Dismiss ); } onDismissPress() { this.props.navigator.dismissLightBox(); } } var styles = StyleSheet.create({ container: { flex: 1, width: Dimensions.get('window').width * 0.8, justifyContent: 'center', alignItems: 'center', backgroundColor: 'white', borderRadius: 10 }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, }, instructions: { textAlign: 'center', color: '#333333', marginBottom: 5, }, button: { textAlign: 'center', fontSize: 18, marginBottom: 10, marginTop:10, color: 'blue' } });