我正在尝试设计此设计react-native
。这就是我为此编写的内容,但这不是我想要的。这仅适用于一个屏幕,如果我更改屏幕大小,则事情不起作用。
这看起来像绝对布局。我应该做些什么改变才能使它适用于所有屏幕尺寸。
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from "react";
import {
AppRegistry,
Image,
View,
Text,
Button,
StyleSheet
} from "react-native";
class SplashScreen extends Component {
render() {
console.disableYellowBox = true;
return (
<View style={styles.container}>
<Image
source={require("./img/talk_people.png")}
style={{ width: 300, height: 300 }}
/>
<Text style={{ fontSize: 22, textAlign: "center", marginTop: 30 }}>
Never forget to stay in touch with the people that matter to you.
</Text>
<View style={{ marginTop: 60, width: 240 }}>
<Button title="CONTINUE" color="#FE434C" />
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
backgroundColor: "#FFFFFF",
margin: 50,
alignItems: "center",
flex: 1,
flexDirection: "column"
}
});
AppRegistry.registerComponent("Scheduled", () => SplashScreen);
预期国家:
现状:
Nexus 4 - 768x1280
答案 0 :(得分:10)
快速回答是在外部容器中使用flex,例如:
<View style={{flex: 1}}>
<View style={{flex: 2}}>
<.../>//Image
</View>
<View style={{flex: 1}}>
<.../>//Text
</View>
<View style={{flex: 1}}>
<.../>//Button
</View>
</View>
将容器分成几个部分,将屏幕的上半部分分配给图像,将另外两个部分分配给文本和按钮;您可以根据需要使用填充和边距,并使用您想要的任何比例。
然而,还需要考虑的是屏幕像素密度,它确实会对显示器尺寸造成严重破坏。我发现有一个外面的方便
import React from 'react';
import { PixelRatio } from 'react-native';
let pixelRatio = PixelRatio.get();
export const normalize = (size) => {
switch (true){
case (pixelRatio < 1.4):
return size * 0.8;
break;
case (pixelRatio < 2.4):
return size * 1.15;
break;
case (pixelRatio < 3.4):
return size * 1.35;
break;
default:
return size * 1.5;
}
}
export const normalizeFont = (size) => {
if (pixelRatio < 1.4){
return Math.sqrt((height*height)+(width*width))*(size/175);
}
return Math.sqrt((height*height)+(width*width))*(size/100);
}
我用作
的模块import { normalize, normalizeFont } from '../config/pixelRatio';
const {width, height} = require('Dimensions').get('window');
...对于一张图片,请说:
<Image source={ require('../images/my_image.png') } style={ { width: normalize(height*.2), height: normalize(height*.2) } } />
和字体:
button_text: {
fontSize: normalizeFont(configs.LETTER_SIZE * .7),
color: '#ffffff'
},
希望这有帮助!
编辑:上面的模块对我已部署的设备有用,但应扩展为允许pixelRatio值为1到4,并带有一些小数(例如1.5)值在那里。有一个good chart at this link我正在努力尝试完成这个,但到目前为止最有效的方法就像我上面发布的那样。
答案 1 :(得分:1)
创建动态布局的另一个好方法是使用Dimensions,我个人讨厌flex(有时无法理解)使用尺寸你可以获得屏幕宽度和高度。之后,您可以划分结果并将它们分配给顶级组件
import React, { Component } from "react";
import {
View,
StyleSheet,
Dimensions
} from "react-native";
const styles = StyleSheet.create({
container: {
backgroundColor: "#FFFFFF",
height: Dimensions.get('window').height,
width: Dimensions.get('window').width,
//height:Dimensions.get('window').height*0.5// 50% of the screen
margin: 50,
alignItems: "center",
flex: 1,
flexDirection: "column"
}
});
另外添加了这个,遇到了支持媒体查询的library,如果你对css样式感到舒服,那就试试吧