/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow */ import React, { Component } from 'react'; import { Platform, StyleSheet, Text, View, Image, TouchableOpacity, StatusBar, ImageBackground, Button, DeviceEventEmitter } from 'react-native'; import BasePage from './BasePage'; type Props = {}; export default class SchoolAge extends BasePage { render() { return ( 请选择孩子所在的学龄段 ); } pres() { this.clearPageToNext('MainPage', { index: 0 }); } primary() { this.clearPageToNext('MainPage', { index: 1 }); } middle() { this.clearPageToNext('MainPage', { index: 2 }); } } const styles = StyleSheet.create({ title_text: { justifyContent: 'center', alignItems: 'center', color: 'black', fontSize: 20, fontWeight: '300', textAlign: 'center' }, view_flex: { flex: 0.1 }, touchable_item: { flex: 1, width: '90%', justifyContent: 'center', alignItems: 'center' }, image_item: { width: '100%', height: '95%', resizeMode: 'contain' } });