generated from nventive/Template
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathLayoutConstants.xaml
More file actions
53 lines (43 loc) · 1.66 KB
/
LayoutConstants.xaml
File metadata and controls
53 lines (43 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<!--
******************************************************************
PLATFORM-DEPENDENT RESOURCES
******************************************************************
-->
<!--
These resources are programmatically added at runtime, and their values change depending on the platform/device.
StatusBarDouble
StatusBarThickness
StatusBarGridLength
ApplicationBarDouble
ApplicationBarGridLength
SplitViewPaneDouble
SplitViewPaneGridLength
OnePixel
OnePixelDouble
OnePixelGridLength
OnePixelThicknessTop
OnePixelThicknessBottom
-->
<!--
******************************************************************
PLATFORM-SPECIFIC RESOURCES
******************************************************************
-->
<!-- ANDROID -->
<!-- Elevation -->
<!-- https://material.io/guidelines/material-design/elevation-shadows.html#elevation-shadows-elevation-android -->
<x:Double x:Key="ButtonElevation">2</x:Double>
<x:Double x:Key="CardElevation">2</x:Double>
<x:Double x:Key="CommandBarElevation">4</x:Double>
<x:Double x:Key="FloatingActionButtonElevation">6</x:Double>
<x:Double x:Key="SearchBarElevation">2</x:Double>
<!-- CornerRadius -->
<CornerRadius x:Key="ButtonCornerRadius">2</CornerRadius>
<CornerRadius x:Key="CardCornerRadius">2</CornerRadius>
<CornerRadius x:Key="TextBoxCornerRadius">2</CornerRadius>
</ResourceDictionary>