import React from "react"; import { ImageBackground, Image, StyleSheet, StatusBar, Dimensions } from "react-native"; import { Block, Button, Text, theme } from "galio-framework"; const { height, width } = Dimensions.get("screen"); import argonTheme from "../constants/Theme"; import Images from "../constants/Images"; class Onboarding extends React.Component { render() { const { navigation } = this.props; return ( ); } } const styles = StyleSheet.create({ container: { backgroundColor: theme.COLORS.BLACK }, padded: { paddingHorizontal: theme.SIZES.BASE * 2, position: "relative", bottom: theme.SIZES.BASE, zIndex: 2, }, button: { width: width - theme.SIZES.BASE * 4, height: theme.SIZES.BASE * 3, shadowRadius: 0, shadowOpacity: 0 }, logo: { width: 200, height: 60, zIndex: 2, position: 'relative', marginTop: '-50%' }, title: { marginTop:'-5%' }, subTitle: { marginTop: 20 } }); export default Onboarding;