From 6484ff33cfa3f7d1cfbc54c4b7d37dcacf5f4abd Mon Sep 17 00:00:00 2001 From: Morten Nielsen Date: Wed, 18 Oct 2023 22:42:03 -0700 Subject: [PATCH] improve sample layout --- SampleApp/MainPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SampleApp/MainPage.xaml.cs b/SampleApp/MainPage.xaml.cs index 301731a..8f7ff4c 100644 --- a/SampleApp/MainPage.xaml.cs +++ b/SampleApp/MainPage.xaml.cs @@ -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) => {