Skip to content

Commit 71c01c4

Browse files
author
Ryan Davis
committed
feat: add qff mockup
1 parent 5ee460f commit 71c01c4

File tree

3 files changed

+584
-14
lines changed

3 files changed

+584
-14
lines changed

VisualChallenge/VisualChallenge/AppShell.xaml

Lines changed: 34 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
RouteScheme="app"
77
Route="VisualChallenge"
88
FlyoutBehavior="Disabled"
9+
Shell.NavBarIsVisible="False"
910
Title="VisualChallenge"
1011
x:Class="VisualChallenge.AppShell"
1112
Visual="Material"
@@ -16,26 +17,45 @@
1617
-->
1718
<Shell.Resources>
1819
<ResourceDictionary>
19-
<Color x:Key="NavigationPrimary">#2196F3</Color>
20+
<Color x:Key="NavigationPrimary">#FEFEFE</Color>
2021
<Style x:Key="BaseStyle" TargetType="Element">
2122
<Setter Property="Shell.ShellBackgroundColor" Value="{StaticResource NavigationPrimary}" />
22-
<Setter Property="Shell.ShellForegroundColor" Value="White" />
23-
<Setter Property="Shell.ShellTitleColor" Value="White" />
24-
<Setter Property="Shell.ShellDisabledColor" Value="#B4FFFFFF" />
25-
<Setter Property="Shell.ShellUnselectedColor" Value="#95FFFFFF" />
23+
<Setter Property="Shell.ShellForegroundColor" Value="Green" />
24+
<Setter Property="Shell.ShellTitleColor" Value="Black" />
25+
<Setter Property="Shell.ShellDisabledColor" Value="Blue" />
26+
<Setter Property="Shell.ShellUnselectedColor" Value="Orange" />
2627
<Setter Property="Shell.ShellTabBarBackgroundColor" Value="{StaticResource NavigationPrimary}" />
27-
<Setter Property="Shell.ShellTabBarForegroundColor" Value="White"/>
28-
<Setter Property="Shell.ShellTabBarUnselectedColor" Value="#95FFFFFF"/>
29-
<Setter Property="Shell.ShellTabBarTitleColor" Value="White"/>
28+
<Setter Property="Shell.ShellTabBarForegroundColor" Value="Purple"/>
29+
<Setter Property="Shell.ShellTabBarUnselectedColor" Value="Gray"/>
30+
<Setter Property="Shell.ShellTabBarTitleColor" Value="#E80000"/>
3031
</Style>
3132
<Style TargetType="ShellItem" BasedOn="{StaticResource BaseStyle}" />
3233
</ResourceDictionary>
3334
</Shell.Resources>
35+
36+
<ShellItem Title="Bottom Tab Sample"
37+
Style="{StaticResource BaseStyle}">
38+
39+
<ShellSection Title="HOME" Icon="ic_home.png">
40+
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
41+
</ShellSection>
42+
43+
<ShellSection Title="TRIPS" Icon="ic_trip.png">
44+
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
45+
</ShellSection>
46+
47+
<ShellSection Title="BOOK" Icon="ic_plane.png">
48+
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
49+
</ShellSection>
50+
51+
<ShellSection Title="DEALS" Icon="ic_offer.png">
52+
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
53+
</ShellSection>
54+
55+
<ShellSection Title="MY QFF" Icon="ic_person_black_24dp.png">
56+
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
57+
</ShellSection>
3458

35-
<FlyoutItem>
36-
<Tab>
37-
<ShellContent ContentTemplate="{DataTemplate local:VisualChallengePage}"/>
38-
</Tab>
39-
</FlyoutItem>
40-
59+
</ShellItem>
60+
4161
</Shell>

0 commit comments

Comments
 (0)