|
12 | 12 | x:Class="SecRandom.Views.SettingsView" |
13 | 13 | x:DataType="views:SettingsView" |
14 | 14 | Header="{x:Static ml:Resources.P_Settings}" |
15 | | - NavigationPage.HasBackButton="False" |
| 15 | + NavigationPage.HasNavigationBar="False" |
16 | 16 | Loaded="OnLoaded" |
17 | 17 | Unloaded="OnUnloaded"> |
18 | 18 | <Grid RowDefinitions="Auto *"> |
|
36 | 36 | Classes="nav-back" |
37 | 37 | IsHitTestVisible="True" /> |
38 | 38 |
|
| 39 | + <Button HorizontalAlignment="Center" VerticalAlignment="Center" |
| 40 | + Width="48" Height="40" IsHitTestVisible="True" |
| 41 | + IsVisible="{Binding IsMobile}" |
| 42 | + Theme="{DynamicResource TransparentButton}" |
| 43 | + Click="MobileHomeButton_OnClick"> |
| 44 | + <sr:FluentIcon Glyph="{sr:Fi HomeFilled}" FontSize="20" |
| 45 | + HorizontalAlignment="Center" VerticalAlignment="Center" /> |
| 46 | + </Button> |
| 47 | + |
39 | 48 | <Image Source="/Assets/AppLogo.png" |
40 | 49 | Width="18" Height="18" |
41 | 50 | VerticalAlignment="Center" |
42 | 51 | Margin="8 0 0 0" |
43 | | - IsHitTestVisible="False" /> |
| 52 | + IsHitTestVisible="False" |
| 53 | + IsVisible="{Binding !IsMobile}" /> |
44 | 54 |
|
45 | 55 | <TextBlock Text="SecRandom" |
46 | 56 | FontSize="12" |
47 | 57 | VerticalAlignment="Center" |
48 | | - IsHitTestVisible="False" /> |
| 58 | + IsHitTestVisible="False" |
| 59 | + IsVisible="{Binding !IsMobile}" /> |
49 | 60 | </StackPanel> |
50 | 61 |
|
51 | 62 | <AutoCompleteBox Grid.Column="2" |
52 | 63 | VerticalAlignment="Center" MaxWidth="420" |
| 64 | + IsVisible="{Binding !IsMobile}" |
53 | 65 | FilterMode="Custom" |
54 | 66 | MaxDropDownHeight="480" |
55 | 67 | ItemsSource="{Binding ViewModel.SettingsMetadata}" |
|
0 commit comments