Quiz
- What are the three ways you can define the width of a column in a grid?
- If a grid’s column definition looks like this –
(2*, auto, *, 100)
– how will the space be divided? - If a
Button
object is defined like this:new Button()
.Margin(5)
.Text("Forgot Password")
.Row(Row.Buttons).Column(Column.Forgot)
What do we know about its position?
- What is the advantage of
Grid
over usingVerticalStackLayout
andHorizontalStackLayout
? - Why is
BindableLayout
less useful than, for example,CollectionView
?