-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMainView.ux
40 lines (31 loc) · 1.18 KB
/
MainView.ux
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
<App>
<Font File="assets/fonts/fabicons.ttf" ux:Global="FabIconFont" />
<!-- Fab Standard -->
<fab.standard Margin="20,123" BtnBackground="#ef5350" IconColor="#fff" ItemsBackground="#fff" ItemsIconColor="#333" />
<!-- Fab Toolbar -->
<fab.toolbar ToolbarColor="#f44336" IconColor="#fff" ItemsIconColor="#fff" />
<!-- Fab Fullscreen -->
<fab.fullScreen Margin="0,10" BtnBackground="#fff" IconColor="#333" ScreenBackground="#f44336"/>
<!-- Fab Sheet -->
<fab.sheet Margin="10,163" Alignment="Top" SheetBackground="#fff" BtnBackground="#fff" IconColor="#333"/>
<!-- _____________________________________________________________________
For Preview Only
-->
<DockPanel Alignment="Top" Margin="0,150" Width="110">
<Circle Height="110" Width="110" Color="#ccc" Layer="Overlay">
<Stroke Width="5" Color="#f3f3f3" Offset="4" />
</Circle>
</DockPanel>
<StackPanel>
<Panel Background="#e53935" Height="150" Alignment="Top"></Panel>
<Panel Background="#f3f3f3" Height="110"></Panel>
</StackPanel>
<ScrollView Margin="0,260,0,0" Padding="0,20">
<StackPanel>
<preview.card />
<preview.card />
<preview.card />
<preview.card />
</StackPanel>
</ScrollView>
</App>