-
Notifications
You must be signed in to change notification settings - Fork 32
/
ShowPage.xaml
57 lines (54 loc) · 2.97 KB
/
ShowPage.xaml
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
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Flexibility.Shared.ShowPage"
BackgroundColor="#16222a"
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core"
ios:Page.LargeTitleDisplay="Never"
ios:Page.UseSafeArea="false">
<ContentPage.Resources>
<ResourceDictionary Source="Resources/FontRD.xaml"/>
<StyleSheet Source="Styles/ShowPage.css" />
</ContentPage.Resources>
<ContentPage.Content>
<ScrollView>
<FlexLayout StyleClass="content">
<Image StyleClass="poster" Source="seattle.jpg"/>
<Label Style="{StaticResource FAStyle}" StyleClass="popularity" Text="" />
<Label StyleClass="year" Text="2017" />
<Label StyleClass="rating" Text="PG-13" />
<Label StyleClass="length" Text="2hr 10m" />
<BoxView StyleClass="spacer"/>
<Label StyleClass="title" Text="Exploring Lake Union" />
<Label StyleClass="description" Text="It was a night not unlike many others. As the sun settled onto the horizon,the kites began to descend. Bikes brought people to the best overlook of the city skyline. Dodging selfies became to challenge of the day."/>
<Label StyleClass="description">
<Label.FormattedText>
<FormattedString>
<Span Text="Cast: " FontAttributes="Bold" />
<Span Text="Chris Hemsworth, Tom Hiddleston, Cate Blanchett, Idris Elba, Jeff Goldblum..." />
</FormattedString>
</Label.FormattedText>
</Label>
<Label StyleClass="description">
<Label.FormattedText>
<FormattedString>
<Span Text="Director: " FontAttributes="Bold" />
<Span Text="Taika Waititi" />
</FormattedString>
</Label.FormattedText>
</Label>
<Label StyleClass="description">
<Label.FormattedText>
<FormattedString>
<Span Text="Writers: " FontAttributes="Bold" />
<Span Text="Eric Pearson, Craig Kyle, Christopher Yost" />
</FormattedString>
</Label.FormattedText>
</Label>
<Label StyleClass="action" Style="{StaticResource FAStyle}" Text=""/>
<Label StyleClass="action" Style="{StaticResource FAStyle}" Text=""/>
<BoxView FlexLayout.Grow="1" />
</FlexLayout>
</ScrollView>
</ContentPage.Content>
</ContentPage>