import React from 'react'; import { ImageBackground, View, StyleSheet, Image, Text } from 'react-native'; const Splash = () => { return( Click & Push ) } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', resizeMode: 'cover', justifyContent: 'space-between' }, center: { alignItems: 'center', justifyContent: 'center', }, brandContainer: { flex: 2, marginVertical: 50, flexDirection: 'column', justifyContent: 'space-between' }, title: { fontFamily: 'RacingSansOne-Regular', marginTop: 30, color: 'white', fontSize: 30 }, }) export default Splash;