Skip to content

Commit

Permalink
improve sample layout
Browse files Browse the repository at this point in the history
  • Loading branch information
dotMorten committed Oct 19, 2023
1 parent fedca7f commit 6484ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SampleApp/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private void LoadSamples()
samplelist.Children.Add(header);
foreach (var sample in group.OrderBy(t => t.Priority))
{
Button b = new Button() { Text = sample.DisplayName, HorizontalOptions = LayoutOptions.FillAndExpand };
Button b = new Button() { Text = sample.DisplayName, HorizontalOptions = LayoutOptions.FillAndExpand, Margin = new Thickness(10) };
var t = sample.PageType;
b.Clicked += (s, e) =>
{
Expand Down

0 comments on commit 6484ff3

Please sign in to comment.