在以下示例中,我的“添加到收藏夹”按钮未右对齐,而是黑色而不是白色。我看不到任何地方定义的任何样式,而且我似乎无法使用指数到达 safari 检查器。
不正确
正确对齐的正确白星
查看示例代码 https://github.com/shoutem/ui/blob/develop/examples/components/Tiles.js - 看起来它应该将其样式设置为白色并右对齐,但在我的案子。我需要用封闭式包装它吗?我该如何调试?
render() {
return (
<View style={styles.container}>
<Image
styleName="large-banner"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-3.png' }}
>
<Tile>
<View styleName="actions">
<Button styleName="tight clear"><Icon name="add-to-favorites" /></Button>
</View>
<Title>HOW TO MAINTAIN YOUR MENTAL HEALTH IN 2016</Title>
<Caption>6557 Americo Hills Apt. 118</Caption>
</Tile>
</Image>
....