import { View, Text, StyleSheet, Image } from 'react-native'; import NormalButton from '../../../global/normal_button'; const successLogo = require('../../../../assets/successLogo.png'); const ResetSuccessful = () => { const imageSize = 200; return ( <> 重置密碼成功 歡迎使用 Crazy Charge 祝你一路順“瘋“ 下一步} onPress={() => console.log('clicked')} /> ); }; const styles = StyleSheet.create({ container: { flex: 1, paddingHorizontal: 20, height: '100%' }, textContainer: { justifyContent: 'flex-start', alignItems: 'center', // backgroundColor: 'black', paddingTop: '10%', gap: 15 }, titleText: { fontSize: 28 }, text: { fontSize: 16 } }); export default ResetSuccessful;