import * as WebBrowser from 'expo-web-browser'; import * as React from 'react'; import { StyleSheet, View } from 'react-native'; import { WingBlank, InputItem } from '@ant-design/react-native'; import { Caption, Paragraph } from 'react-native-paper'; import { Div } from 'react-native-magnus'; import Header from '../../components/Header'; import Button from '../../components/Button'; export default function BackPasswordScreen() { const [phone, setphone] = React.useState(); const [code, setCode] = React.useState(); const [password, setPassword] = React.useState(); const [password2, setPassword2] = React.useState(); return (
手机号 发送验证码} placeholder="输入验证码" maxLength={6} style={{ fontSize: 14 }} onExtraClick={() => { console.log('发送验证码'); }} > 验证码 新密码 确认密码
); } const styles = StyleSheet.create({ list: { backgroundColor: '#fff', borderWidth: 0, flex: 1, paddingTop: 20, }, btn: { marginTop: 40, }, });