1234567891011121314151617181920212223242526272829303132333435 |
- /**
- * Created by Sean on 2018/5/9.
- */
- import {
- View,
- Text,
- StyleSheet,
- TouchableOpacity,
- ScrollView
- } from 'react-native'
- import React, {Component} from 'react'
- import {NavigationBarHeight, TabBarHeight, ScreenDimensions} from '../../../utils/DimensionsTools'
-
- export default class CAGameViewController extends Component {
- constructor(props) {
- super(props)
- }
-
- render() {
- return(
- <View style={styles.View}>
- <Text>Game!</Text>
- </View>
- );
- }
-
- }
-
- const styles = StyleSheet.create({
- View: {
- width: ScreenDimensions.width,
- height: ScreenDimensions.height,
- backgroundColor: 'white'
- },
- })
|