import React, {Component} from 'react'; import Button from 'apsl-react-native-button'; import {StyleSheet, View, Text, Image, BackHandler, Alert} from 'react-native'; import BaseScreen from './../BaseScreen' import {responsiveWidth, responsiveHeight} from 'react-native-responsive-dimensions' import {theme} from "../BaseScreen"; import I18n from 'react-native-i18n' const route = require('./../../route.json'); let rootHelp = './../../assets/img/slider/slide'; export default class HelpMenu extends BaseScreen { sizeHelp = 10; static navigatorStyle = { drawUnderNavBar: true, navBarHidden: true, drawUnderStatusBar: false, statusBarHidden: true, statusBarTextColorScheme: 'light', }; constructor(props) { super(props, true); this.state = { items: [] } } render() { return ( {I18n.t('GUIDE_TITLE')} ) } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', backgroundColor: theme.primary }, title: { fontSize: 20, alignSelf: "center", fontWeight: 'bold', color: 'white' }, btnStyle: { borderColor: 'transparent', backgroundColor: theme.primaryDark, height: 48, marginRight: responsiveWidth(5), marginLeft: responsiveWidth(5) }, btnTextStyle: { fontSize: 18, color: 'white', fontWeight: 'bold' }, viewlogo: { width: responsiveWidth(100), flexDirection: 'row', marginBottom: 20, justifyContent: 'center', alignItems: 'center' }, img_style: { resizeMode: 'contain', width: responsiveWidth(90), height: responsiveHeight(16), // Delete this line if the image size sucks and change the width and the height of icon3.png to 257 x 112 } });