0

在以下示例中,我的“添加到收藏夹”按钮未右对齐,而是黑色而不是白色。我看不到任何地方定义的任何样式,而且我似乎无法使用指数到达 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>
   ....
4

1 回答 1

0

这是因为我是View从 react-native 导入的。一旦我开始View@shoutem/ui它导入正确的样式。

于 2017-01-10T13:51:56.807 回答