Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Grid component #12

Closed
Eilon opened this issue Oct 17, 2019 · 1 comment
Closed

Add Grid component #12

Eilon opened this issue Oct 17, 2019 · 1 comment
Labels
area-mobileblazorbindings Experimental Mobile Bindings for Blazor

Comments

@Eilon
Copy link
Member

Eilon commented Oct 17, 2019

Syntax something like this:

    <Grid>
        <Layout>
            <RowDefinition Height="40" GridUnitType="GridUnitType.Absolute"></RowDefinition>
            <RowDefinition Height="100" GridUnitType="GridUnitType.Absolute"></RowDefinition>
            <ColumnDefinition Width="1" GridUnitType="GridUnitType.Star"></ColumnDefinition>
            <ColumnDefinition Width="2" GridUnitType="GridUnitType.Star"></ColumnDefinition>
        </Layout>
        <Contents>
            <GridCell Row="0" Column="0" ColumnSpan="2">
                <Label Text="Wide header" BackgroundColor="Color.AliceBlue" />
            </GridCell>
            <GridCell Row="1" Column="0">
                <Switch IsToggled="true" />
            </GridCell>
            <GridCell Row="1" Column="1">
                <Entry Text="Buy cat" />
            </GridCell>
        </Contents>
    </Grid>
@Eilon Eilon added the area-mobileblazorbindings Experimental Mobile Bindings for Blazor label Oct 17, 2019
@Eilon Eilon added this to the 0.1.0-sneak-preview milestone Oct 17, 2019
@Eilon
Copy link
Member Author

Eilon commented Oct 22, 2019

Done in ecc8602

🤞🤞🤞🤞🤞🤞🤞🤞🤞🤞🤞🤞

@Eilon Eilon closed this as completed Oct 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-mobileblazorbindings Experimental Mobile Bindings for Blazor
Projects
None yet
Development

No branches or pull requests

1 participant