React Native文本添加下划线
在React Native中,为文本添加下划线可以使用Text
组件的textDecorationLine
属性。以下是一个简单的例子:
import React from 'react';
import { Text, StyleSheet } from 'react-native';
const UnderlinedText = () => {
return (
<Text style={styles.textWithUnderline}>这是带下划线的文本</Text>
);
};
const styles = StyleSheet.create({
textWithUnderline: {
textDecorationLine: 'underline', // 添加下划线
},
});
export default UnderlinedText;
在这个例子中,<Text>
组件使用了一个样式对象styles.textWithUnderline
,该对象中的textDecorationLine
属性被设置为'underline'
,这会使得该<Text>
组件内的文本显示为带下划线的样式。
评论已关闭