You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

39 lines
1.0 KiB

import React, {Component} from 'react';
import {Image, ScrollView, StyleSheet, View, TouchableOpacity} from 'react-native';
import MyText from './mytext.js';
const styles = {
main: {
backgroundColor: '#ffffff',
flex: 1,
},
menutable: {
borderBottomColor: 'lightgrey',
borderBottomWidth: 1,
padding: 15,
fontSize: 16,
},
};
export default class Menu extends Component {
constructor(props) {
super(props);
}
render() {
const { main, help } = this.props;
return (
<View style={styles.main}>
<ScrollView>
<Image style={{alignSelf: 'flex-start', height: 121.30401, width: 250}} source={require('../images/menulogo.png')} resizeMode={'contain'} />
<MyText style={styles.menutable} onPress={main}>Calculator</MyText>
<MyText style={styles.menutable} onPress={help}>Help</MyText>
<MyText style={styles.menutable} onPress={null}>Tips</MyText>
<MyText style={[styles.menutable, {borderBottomWidth: 0}]} onPress={null}>About</MyText>
</ScrollView>
</View>
);
}
}