We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The two-column layout does not seem to calculate the size correctly.
<Grid ColumnDefinitions="*,Auto" ColumnSpacing="0"> <Label Grid.Column="0" Text="{Binding}" FontAttributes="Bold" VerticalOptions="Center" Margin="0,16,0,16"/> <Image Grid.Column="1" Source="dotnet_bot" WidthRequest="24" HeightRequest="24" VerticalOptions="Center" Margin="0,0,8,0" /> <BoxView Grid.Column="0" Grid.ColumnSpan="2" HeightRequest="1" Color="Gray" VerticalOptions="End" HorizontalOptions="FillAndExpand" /> </Grid>
This can be resolved by explicitly specifying RowDefinitions="Auto".
RowDefinitions="Auto"
<Grid ColumnDefinitions="*,Auto" RowDefinitions="Auto" ColumnSpacing="0">
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The two-column layout does not seem to calculate the size correctly.
This can be resolved by explicitly specifying
RowDefinitions="Auto"
.The text was updated successfully, but these errors were encountered: