/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View,
Image,
TextInput
} from 'react-native';
var Dimensions =require('Dimensions');
var {width, height}=Dimensions.get('window');
export default class App extends Component<{}> {
render() {
return (
<View style={styles.container}>
{/*头像*/}
<Image source={require('./img/my.jpg')} style={styles.topImageStyle}/>
{/*文本输入*/}
<TextInput placeholder='请输入账号' underlineColorAndroid='transparent' style={styles.textInputStyle}/>
<TextInput placeholder='请输入密码' underlineColorAndroid='transparent' secureTextEntry={true} style={styles.textInputStyle}/>
{/*登录的按钮*/}
<View style={styles.loginStyle}>
<Text>
登录
</Text>
</View>
{/*无法登陆 新用户*/}
<View style={styles.centerViewStyle}>
<Text>无法登录</Text>
<Text>新用户</Text>
</View>
{/*其他的登录方式*/}
<View style={styles.otherLoginStyle}>
<Text>其他登录方式</Text>
<Image source={require('./img/xinlang.png')} style={styles.bottomImageStyle}/>
<Image source={require('./img/QQ.png')} style={styles.bottomImageStyle}/>
<Image source={require('./img/wechat.png')} style={styles.bottomImageStyle}/>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#dddddd',
alignItems:'center',
paddingTop:10
},
topImageStyle:{
width:80,
height:80,
borderRadius:50,
marginBottom:30
},
textInputStyle:{
height:38,
width:width,
marginBottom:1,
backgroundColor:'white'
},
loginStyle:{
width:width*0.9,
height:42,
backgroundColor:'#4DAFDF',
alignItems:'center',
justifyContent:'center',
marginTop:20,
borderRadius:10
},
centerViewStyle:{
flexDirection:'row',
width:width*0.85,
marginTop:10,
justifyContent:'space-between',
},
otherLoginStyle:{
flexDirection:'row',
position:'absolute',
bottom:10,
width:width*0.9,
alignItems:'center',
},
bottomImageStyle:{
marginLeft:10,
width:40,
height:40,
}
});
搭建QQ登录界面
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
相关阅读更多精彩内容
- 前言 本篇主要内容如下: TextInput组件 Touchable系列组件 QQ登录界面案例 一、TextInp...
- Android 软件盘弹出可能会遮挡住界面上的某些控件。当 windowSoftInputMode 为 adjus...