1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import React from 'react';
- import { ImageBackground, StyleSheet, View, Dimensions, TouchableOpacity, Image, Alert } from 'react-native';
- import { Text, } from 'react-native-paper'
- import 'react-native-get-random-values';
- import { useRegistrationFormState } from '../contexts/RegisterContext';
- const RegisterResult = ({finish}) => {
- return (
- <TouchableOpacity onPress={finish} style={styles.nextBtn} >
- <Text style={{ color: 'white', fontSize: 20 }}>Okay</Text>
- </TouchableOpacity>
- )
- }
- const styles = StyleSheet.create({
- container: {
- position: 'absolute',
- width: Dimensions.get('window').width,
- height: Dimensions.get('window').height,
- flex: 1,
- flexDirection: 'column',
- resizeMode: 'cover',
- },
-
- brandContainer: {
- marginTop: 70,
- height: 50,
- marginBottom: 70,
- marginLeft: 25,
- flexDirection: 'column',
- justifyContent: 'space-evenly'
- },
-
- title: {
- fontFamily: 'RacingSansOne-Regular',
- color: 'white',
- fontSize: 20,
- },
-
- nextBtn: {
- marginHorizontal: 20,
- marginTop: 50,
- borderRadius: 50,
- justifyContent: 'center',
- backgroundColor: '#df3f3f',
- margin: 5,
- height: 50,
- alignItems: 'center'
- },
- })
-
- export default RegisterResult;
-
|