import React from "react"; import { ImageBackground, Image, StyleSheet, StatusBar, Dimensions, SafeAreaView } 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, flex: 1, }, 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 }, pro: { backgroundColor: argonTheme.COLORS.INFO, paddingHorizontal: 8, marginLeft: 3, borderRadius: 4, height: 22, marginTop: 15 }, }); export default Onboarding;