我已经尝试了react-native-hr软件包-不适用于我,Android和iOS。
后面的代码也不适合,因为它在结尾处渲染了三个点
<Text numberOfLines={1}}>
______________________________________________________________
</Text>
我已经尝试了react-native-hr软件包-不适用于我,Android和iOS。
后面的代码也不适合,因为它在结尾处渲染了三个点
<Text numberOfLines={1}}>
______________________________________________________________
</Text>
Answers:
您可以简单地使用带有底边框的空视图。
<View
style={{
borderBottomColor: 'black',
borderBottomWidth: 1,
}}
/>
borderBottomWidth: StyleSheet.hairlineWidth
:)
可以使用边距来更改线条的宽度并将其居中放置。
import { StyleSheet } from 'react-native;
<View style = {styles.lineStyle} />
const styles = StyleSheet.create({
lineStyle:{
borderWidth: 0.5,
borderColor:'black',
margin:10,
}
});
如果要动态给定边距,则可以使用尺寸宽度。
<View style = {styles.lineStyle} />
因为两者之间没有任何关系;-)
styles.lineStyle
将对应于const styles = StyleSheet.create({ lineStyle: ... });
此处。您只有lineStyle = { ...}
那会导致问题。的完整解决方案styles.lineStyle
可能是const styles = StyleSheet.create({ lineStyle: { borderWidth: 0.5, borderColor: 'black', margin: 10 } });
。
lineStyle
样式表放入其中。
我是这样做的。希望这可以帮助
<View style={styles.hairline} />
<Text style={styles.loginButtonBelowText1}>OR</Text>
<View style={styles.hairline} />
风格:
hairline: {
backgroundColor: '#A2A2A2',
height: 2,
width: 165
},
loginButtonBelowText1: {
fontFamily: 'AvenirNext-Bold',
fontSize: 14,
paddingHorizontal: 5,
alignSelf: 'center',
color: '#A2A2A2'
},
flexbox
即使在行中心也有文本,我也能够绘制带有属性的分隔符。
<View style={{flexDirection: 'row', alignItems: 'center'}}>
<View style={{flex: 1, height: 1, backgroundColor: 'black'}} />
<View>
<Text style={{width: 50, textAlign: 'center'}}>Hello</Text>
</View>
<View style={{flex: 1, height: 1, backgroundColor: 'black'}} />
</View>
这是在React Native(JSX)代码中,已更新到今天:
<View style = {styles.viewStyleForLine}></View>
const styles = StyleSheet.create({
viewStyleForLine: {
borderBottomColor: "black",
borderBottomWidth: StyleSheet.hairlineWidth,
alignSelf:'stretch',
width: "100%"
}
})
您可以使用alignSelf:'stretch'
或者width: "100%"
两者都应该工作...和,
borderBottomWidth: StyleSheet.hairlineWidth
这StyleSheet.hairlineWidth
是最薄的
borderBottomWidth: 1,
等等以增加线的粗细。
创建一个可重用的Line
组件对我有用:
import React from 'react';
import { View } from 'react-native';
export default function Line() {
return (
<View style={{
height: 1,
backgroundColor: 'rgba(255, 255, 255 ,0.3)',
alignSelf: 'stretch'
}} />
)
}
现在,导入并Line
在任何地方使用:
<Line />
import { View, Dimensions } from 'react-native'
var { width, height } = Dimensions.get('window')
// Create Component
<View style={{
borderBottomColor: 'black',
borderBottomWidth: 0.5,
width: width - 20,}}>
</View>
您可以使用本机元素分隔符。
通过以下方式安装:
npm install --save react-native-elements
# or with yarn
yarn add react-native-elements
import { Divider } from 'react-native-elements'
然后去:
<Divider style={{ backgroundColor: 'blue' }} />
<Divider />
组件,肯定会过分的,但是,您应该使用一种库来节省样式简单按钮,搜索栏等的时间,等等。。。react-native-elements.github.io/react-native-elements
你为什么不做这样的事?
<View
style={{
borderBottomWidth: 1,
borderBottomColor: 'black',
width: 400,
}}
/>
import {Dimensions} from 'react-native'
const { width, height } = Dimensions.get('window')
<View
style={{
borderBottomColor: '#1D3E5E',
borderBottomWidth: 1,
width : width ,
}}
/>
这就是我用中间的水平线和文本解决分隔线的方法:
<View style={styles.divider}>
<View style={styles.hrLine} />
<Text style={styles.dividerText}>OR</Text>
<View style={styles.hrLine} />
</View>
和样式:
import { Dimensions, StyleSheet } from 'react-native'
const { width } = Dimensions.get('window')
const styles = StyleSheet.create({
divider: {
flexDirection: 'row',
alignItems: 'center',
marginTop: 10,
},
hrLine: {
width: width / 3.5,
backgroundColor: 'white',
height: 1,
},
dividerText: {
color: 'white',
textAlign: 'center',
width: width / 8,
},
})
如果您有坚实的背景(例如白色),则可以解决此问题:
<View style={container}>
<View style={styles.hr} />
<Text style={styles.or}>or</Text>
</View>
const styles = StyleSheet.create({
container: {
flex: 0,
backgroundColor: '#FFFFFF',
width: '100%',
},
hr: {
position: 'relative',
top: 11,
borderBottomColor: '#000000',
borderBottomWidth: 1,
},
or: {
width: 30,
fontSize: 14,
textAlign: 'center',
alignSelf: 'center',
backgroundColor: '#FFFFFF',
},
});