SwiftUI.js
Components

GridRow

GridRow defines a single row inside `Grid`.

GridRow defines a single row inside `Grid`.

Examples

Default

Preview unavailable for this example in the static docs build.

Show code
<Grid columns={3} spacing={12}>
      <GridRow>
        <Card><Text>Left</Text></Card>
        <Card><Text>Center</Text></Card>
        <Card><Text>Right</Text></Card>
      </GridRow>
    </Grid>

API

This component currently relies on inherited element props.

Inherits additional props from IBaseComponent.

Overview

GridRow defines a single row inside Grid.

On this page