作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望删除此图像中的最后一个元素,但到目前为止我只能将其切断。
代码如下:
<View style={{ flexDirection: "row", flexWrap: "nowrap", overflow: "hidden" }}>
{item.sortedTagObjects.map(({ tag, color }) => (
<Text
key={tag}
style={{
height: 24,
lineHeight: 24,
paddingHorizontal: 8,
paddingVertical: 2,
justifyContent: "center",
textAlign: "center",
backgroundColor: "purple",
}}
>
{tag}
</Text>
))}
</View>;
<Text numberOfLines={1}>
它看起来像这样:
最佳答案
一个快速的解决方案是将您的父 View 更改为具有 maxHeight:24
或 height: 24
,就像你的文字一样,把你的 flexWrap 改成 flexWrap: 'wrap'
而不是 nowrap
.
这将允许您只渲染 1 行,并隐藏其他行上的所有包装项目。
又名——
<View style={{ maxHeight: 24, flexDirection: "row", flexWrap: "wrap", overflow: "hidden" }}>
{item.sortedTagObjects.map(({ tag, color }) => (
<Text
key={tag}
style={{
height: 24,
lineHeight: 24,
paddingHorizontal: 8,
paddingVertical: 2,
justifyContent: "center",
textAlign: "center",
backgroundColor: "purple",
}}
>
{tag}
</Text>
))}
</View>;
关于react-native - React Native 切掉一行中的最后一个单词,但如果不合适则需要删除整个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62037445/
我是一名优秀的程序员,十分优秀!