|
1 | 1 | <Application x:Class="ToDo.App"
|
2 |
| - xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
| - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
| - xmlns:wasm="http://platform.uno/wasm" |
5 |
| - xmlns:utum="using:Uno.Toolkit.UI.Material" |
6 |
| - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
7 |
| - xmlns:converters="using:ToDo.Converters" |
8 |
| - mc:Ignorable="wasm"> |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:wasm="http://platform.uno/wasm" |
| 5 | + xmlns:utum="using:Uno.Toolkit.UI.Material" |
| 6 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 7 | + xmlns:converters="using:ToDo.Converters" |
| 8 | + mc:Ignorable="wasm"> |
9 | 9 |
|
10 | 10 | <Application.Resources>
|
11 | 11 | <ResourceDictionary>
|
|
15 | 15 |
|
16 | 16 | <!-- Load Material Toolkit resources -->
|
17 | 17 | <MaterialToolkitTheme xmlns="using:Uno.Toolkit.UI.Material"
|
18 |
| - ColorOverrideSource="ms-appx:///Styles/ColorPaletteOverride.xaml" |
19 |
| - FontOverrideSource="ms-appx:///Styles/MaterialFontsOverride.xaml" /> |
| 18 | + ColorOverrideSource="ms-appx:///Styles/ColorPaletteOverride.xaml" |
| 19 | + FontOverrideSource="ms-appx:///Styles/MaterialFontsOverride.xaml" /> |
20 | 20 |
|
21 | 21 | <ResourceDictionary>
|
22 | 22 | <ResourceDictionary.ThemeDictionaries>
|
|
31 | 31 |
|
32 | 32 | <!-- Application's custom styles -->
|
33 | 33 | <ResourceDictionary Source="ms-appx:///Styles/FeedView.xaml" />
|
34 |
| - <ResourceDictionary Source="ms-appx:///Styles/NavigationBar.xaml" /> |
35 | 34 | <ResourceDictionary Source="ms-appx:///Styles/NavigationView.xaml" />
|
36 | 35 |
|
37 | 36 | </ResourceDictionary.MergedDictionaries>
|
38 | 37 |
|
39 |
| - <x:Double x:Key="LandscapeMaxPageWidth">500</x:Double> |
40 |
| - |
41 | 38 | <!-- To override the default FlyoutLightDismissOverlayBackground resource -->
|
42 | 39 | <SolidColorBrush x:Key="FlyoutLightDismissOverlayBackground"
|
43 |
| - Color="{ThemeResource OverlayColor}" /> |
| 40 | + Color="{ThemeResource OverlayColor}" /> |
44 | 41 |
|
45 | 42 | <x:Double x:Key="WideMinWindowWidth">800</x:Double>
|
46 |
| - <x:Double x:Key="ExtraWideMinWindowWidth">1000</x:Double> |
47 | 43 |
|
48 | 44 | <converters:FormatConverter x:Key="FormatConverter" />
|
49 | 45 | <converters:StringFormatter x:Key="StringFormatter" />
|
|
0 commit comments