如何在shoutem / ui中创建内联行图像?现在它们显示为块元素,每个元素都有自己的行。相反,我想将它们显示为一组中心的头像图像。
http://shoutem.github.io/docs/ui-toolkit/components/image
<Tile>
<Parallax driver={this.driver} scrollSpeed={1.2}>
<Title styleName="md-gutter-top">{post.name}</Title>
<Caption>{post.title}</Caption>
<View>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
</View>
</Parallax>
</Tile>
答案 0 :(得分:1)
所以我只需要查看shoutem包含的默认样式作为其视图的一部分。 https://shoutem.github.io/docs/ui-toolkit/components/view
在这种情况下
<View styleName="horizontal">
所以喜欢这个
<View styleName="horizontal">
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
<Image
styleName="small-avatar"
source={{ uri: 'http://shoutem.github.io/img/ui-toolkit/examples/image-3.png'}}
/>
</View>