Stay informed
Subscribe to our newsletter if you'd like to stay informed about Shoutem Extensions and Shoutem UI Toolkit.
Row
is a container that renders its children horizontally.
Row
has no specific (custom) Props, however, it supports every prop that the standard React Native View
component supports. For full list of available props, visit
React Native View component documentation.
Icon
components within Row
. Pulls the icon to the right, and sets opacity to 50%View
components within Row
. Pulls the notification dot to the left of the contentButton
components within Row
Row
. Positions the component with top
style to the beginning of Row
componentView
components within Row
. Adds a bottom margin below each View
in Row
<Row>
<Text numberOfLines={1}>Portland ugh fashion axe Helvetica, YOLO Echo Party</Text>
</Row>
<Row styleName="small">
<Image
styleName="small-avatar"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-9.png' }}
/>
<Text>Add comment</Text>
</Row>
<Row styleName="small">
<Icon name="add-to-favorites-off" />
<Text>Add to favorites</Text>
</Row>
<Row styleName="small">
<Icon name="web" />
<Text>About</Text>
<Icon styleName="disclosure" name="right-arrow" />
</Row>
<Row styleName="small">
<Icon name="share" />
<View styleName="vertical">
<Subtitle>Bridges Rock Gym</Subtitle>
<Text numberOfLines={1}>www.example.com/deal/link/that-is-really-long</Text>
</View>
<Icon styleName="disclosure" name="right-arrow" />
</Row>
<Row>
<Image
styleName="small-avatar top"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-11.png' }}
/>
<View styleName="vertical">
<View styleName="horizontal space-between">
<Subtitle>Dustin Malone</Subtitle>
<Caption>20 minutes ago</Caption>
</View>
<Text styleName="multiline">Banjo tote bag bicycle rights, High Life sartorial cray craft beer whatever street art fap. Hashtag typewriter banh mi, squid keffiyeh High.</Text>
</View>
</Row>
<Row>
<Image
styleName="small rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-10.png' }}
/>
<Subtitle styleName="top">Portland ugh fashion axe Helvetica, YOLO Echo Park Austin gastropub roof party.</Subtitle>
</Row>
<Row>
<Image
styleName="small rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-6.png' }}
/>
<View styleName="vertical stretch space-between">
<Subtitle>Fact Check: Wisconsin Music, Film & Photography Debate</Subtitle>
<Caption>20 hours ago</Caption>
</View>
</Row>
<Row>
<Image
styleName="small rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-3.png' }}
/>
<View styleName="vertical stretch space-between">
<Subtitle>Wilco Cover David Bowie's "Space Oddity"</Subtitle>
<Caption>June 21 ยท 20:00</Caption>
</View>
<Button styleName="right-icon"><Icon name="add-event" /></Button>
</Row>
<Row>
<Image
styleName="small rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-11.png' }}
/>
<View styleName="vertical stretch space-between">
<Subtitle>Family Safari Vacation To The Home Of The Gods</Subtitle>
<View styleName="horizontal">
<Subtitle styleName="md-gutter-right">$120.00</Subtitle>
<Caption styleName="line-through">$150.00</Caption>
</View>
</View>
<Button styleName="right-icon"><Icon name="add-to-cart" /></Button>
</Row>
<Row>
<View styleName="notification-dot" />
<Image
styleName="small rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-2.png' }}
/>
<View styleName="vertical stretch space-between">
<Subtitle>Fact Check: Wisconsin Music, Film & Photography Debate</Subtitle>
<Caption>20 hours ago</Caption>
</View>
</Row>
<Row>
<Image
styleName="medium rounded-corners"
source={{ uri: 'https://shoutem.github.io/img/ui-toolkit/examples/image-1.png' }}
/>
<View styleName="vertical stretch space-between">
<Subtitle>Take A Romantic Break In A Boutique Hotel</Subtitle>
<View styleName="horizontal space-between">
<Caption>3 days ago</Caption>
<Caption>12:16</Caption>
</View>
</View>
</Row>