import React, { Component, Text, View, ScrollView, TouchableOpacity, StyleSheet } from 'react-native'; export default class LightBoxScreen extends Component { constructor(props) { super(props); } render() { return ( This is a LightBox Dismiss ); } onDismissPress() { this.props.navigator.dismissLightBox(); } } const styles = StyleSheet.create({ button: { textAlign: 'center', fontSize: 18, marginBottom: 10, marginTop:10, color: 'blue' } });