File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/DevTKSS.Uno.Samples.MvuxGallery/Presentation Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -59,15 +59,15 @@ public ListboardModel(
5959 /// </remarks>
6060 public IListFeed < string > CodeSampleOptions => ListFeed < string >
6161 . Async ( _codeSampleService . GetCodeSampleOptionsAsync )
62- . Selection ( SelectedSampleOption ) ;
62+ . Selection ( SelectedOption ) ;
6363
6464 /// <summary>
6565 /// Represents the selected code sample option.
6666 /// </summary>
6767 /// <remarks>
6868 /// Uses <see cref="string.Empty"/> as the default value to avoid null checks in the XAML.
6969 /// </remarks>
70- public IState < string > SelectedSampleOption => State < string >
70+ public IState < string > SelectedOption => State < string >
7171 . Value ( this , ( ) => string . Empty )
7272 . ForEach ( SwitchCodeSampleAsync ) ;
7373
Original file line number Diff line number Diff line change 1818 <Grid .RowDefinitions>
1919 <RowDefinition Height =" Auto" />
2020 <RowDefinition Height =" *" />
21- <RowDefinition Height =" Auto"
22- MaxHeight =" 300" />
21+ <RowDefinition Height =" Auto" />
2322 </Grid .RowDefinitions>
2423
2524 <TextBlock Grid.Row=" 0"
You can’t perform that action at this time.
0 commit comments