/* * Menu with few options */ import React, { Component } from 'react'; import { Dimensions, View, Text, ImageBackground, TouchableOpacity, StyleSheet } from 'react-native'; import { Actions } from 'react-native-router-flux'; import Icon from 'react-native-vector-icons/MaterialIcons'; const windowWidth = Dimensions.get('window').width; const windowHeight = Dimensions.get('window').height; const backgroundLink = '../../assets/images/homeBg.jpg'; type Props = {}; export default class Menu extends Component { render() { const { refreshConnection, refreshAvatar, disconnect, avatar } = this.props; return ( Menu Refresh Connection Change Avatar Disconnect © Nexto 2018. ); } } const styles = { container: { flex: 14, backgroundColor: 'white' }, header: { flex: 3 }, overlay: { flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'center', backgroundColor:'rgba(0,0,0,0.5)' }, hdrTxt: { color: 'white', fontSize: 30 }, main: { flex: 10, flexDirection: 'column', justifyContent: 'flex-start' }, option: { flex: 0, flexBasis: 3, flexDirection: 'row', justifyContent: 'flex-start', alignItems: 'center', paddingTop: 25, paddingBottom: 25 }, icons: { fontSize: 20, color: '#0e8f9e', padding: 10 }, refresh: { color: 'green' }, disconnect: { color: 'red' }, optTxt: { fontSize: 15, fontWeight: 'bold', color: 'black', textAlign: 'left', padding: 10 }, copyrightCont: { flex: 1, backgroundColor: '#202021', justifyContent: 'center', alignItems: 'center', padding: 10 }, copyrightTxt: { color: '#0e8f9e' }, copyrightTxtExtra: { fontSize: 10, color: '#0e8f9e' } }