/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Image,
TextInput
} from 'react-native';
var Dimensions = require('Dimensions');
var {width, height} = Dimensions.get('window');
export default class helloworld extends Component {
render() {
return (
<View style={styles.container}>
<Image source={require('./img/bag.png')} style={styles.icon} />
<TextInput style={styles.intputStyle1} placeholder='请输入账号' textAlign="center"></TextInput>
<TextInput style={styles.intputStyle2} placeholder='请输入密码' textAlign="center" secureTextEntry={true}></TextInput>
<View style={styles.loginview}>
<Text>登录</Text>
</View>
<View style={styles.des}>
<Text>无法登录</Text>
<Text>新登录</Text>
</View>
<View style={styles.bottomStyle}>
<Text>其他方式登录</Text>
<Image source={require('./img.bag.png')} style={styles.image}/>
<Image source={require('./img.bag.png')} style={styles.image}/>
<Image source={require('./img.bag.png')} style={styles.image}/>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex:1,
backgroundColor:'#efefef',
//侧轴方向
alignItems : 'center',
paddingTop: 40,
},
icon:{
width:60,
height:60,
borderRadius:30,
marginBottom:30
},
intputStyle1:{
width:width,
height:40,
backgroundColor:'white',
},
intputStyle2:{
width:width,
height:40,
backgroundColor:'white',
marginTop:10
},
loginview:{
width:width*0.9,
height:40,
backgroundColor:'blue',
//主轴对齐
justifyContent:'center',
//侧轴
alignItems:'center',
marginTop:10
},
des:{
// 主轴方向
flexDirection:'row',
width:width*0.9,
// 主轴对齐方式
justifyContent:'space-between',
},
bottomStyle:{
// 主轴方向
flexDirection:'row',
alignItems:'center',
position:'absolute',
bottom:20,
// justifyContent:'flex-start',
left:20
},
image:{
width:30,
height:30,
marginLeft:15,
borderRadius:15,
}
});
AppRegistry.registerComponent('helloworld', () => helloworld);
ReactNative→登录界面
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前言:从最开始开始接触ReactNative,写过几个小demo,但是一直未写一个实际应用场景的demo,前一段时...
- 目录界面 游戏场景及CD技能 开始界面 菜单开发 角色面板及背包系统 关卡界面 任务列表 设置界面 登录界面 关键...
- 好久不写了,今天给大家分享一下登录界面,经理说不登录不让进入个人中心,虽然不麻烦,但是感觉坑挺多(可能我是菜鸟的原...
- @(iOS 项目实战)[项目实战] 作者: Liwx 邮箱: 1032282633@qq.com 目录 04.项目...
- 封装思路:由于app多个地方需要未登录提示,导致代码重复。将相同的代码抽取出来放在一个公用类内,一句代码完成未登录...