💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
![](https://box.kancloud.cn/e24e5f297822f2f8be2e5b7e3c6c2407_1080x1920.png) ~~~ /** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View, TextInput, Image, TouchableOpacity } from 'react-native'; var Dimensions = require('Dimensions'); var {width,height,scale} =Dimensions.get('window'); var iWidth=width-30; class loginView extends Component { render() { return ( <View style={styles.container}> {/* 头像 */} <Image style={styles.headStyle} source={{uri:'head'}} /> {/* 登录表单 */} <View style={styles.inputView}> <TextInput style={styles.inputStyle} placeholder={'请输入您的QQ号'} underlineColorAndroid={'transparent'} keyboardType={'numeric'} /> </View> <View style={styles.inputView}> <TextInput style={styles.inputStyle} placeholder={'请输入您的密码'} secureTextEntry={true} /> </View> {/* 触摸透明反馈 */} <TouchableOpacity activeOpacity={0.5}> <View style={styles.loginBtn}> <Text style={styles.loginBtnText}>登录</Text> </View> </TouchableOpacity> <View style={styles.fuwutiaokuanView}> <Text style={styles.tongyi}>我已阅读并同意</Text> <TouchableOpacity activeOpacity={0.5}> <View> <Text style={styles.fuwutiaokuan}>服务条款</Text> </View> </TouchableOpacity> </View> <View style={styles.bottomBtn}> <TouchableOpacity activeOpacity={0.5}> <Text style={styles.bottomBtnText}>无法登录</Text> </TouchableOpacity> <TouchableOpacity activeOpacity={0.5}> <Text style={styles.bottomBtnText}>新用户注册</Text> </TouchableOpacity> </View> </View> ); } } const styles = StyleSheet.create({ container: { flex:1, backgroundColor: '#ecedf1', alignItems:'center' }, headStyle:{ width:88, height:88, borderWidth:3, borderColor:'#fff', borderRadius:88, marginTop:44, marginBottom:15 }, inputView:{ width:width, height:44, backgroundColor:'#fff', marginBottom:1 }, inputStyle:{ width:width-30, height:44, marginLeft:15, backgroundColor:'#fff', }, loginBtn:{ width:iWidth, height:40, backgroundColor:'#1fbaf3', alignItems:'center', justifyContent:'center', marginBottom:15, marginTop:15, borderRadius:8 }, loginBtnText:{ color:'#ffffff' }, fuwutiaokuanView:{ width:iWidth, marginLeft:15, flexWrap:'wrap', flexDirection:'row', justifyContent:'flex-start', }, fuwutiaokuan:{ color:'#1fbaf3' }, tongyi:{ alignSelf:'flex-start' }, bottomBtn:{ width:iWidth, position:'absolute', bottom:15, marginLeft:15, flexDirection:'row', justifyContent:'space-between' }, bottomBtnText:{ color:'#1fbaf3' } }); module.exports=loginView; ~~~