Skip to content

Commit 9d12b44

Browse files
author
ferris
committed
Initial commit
0 parents  commit 9d12b44

21 files changed

+347
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
.uno/

Assets/background.jpg

19.7 KB
Loading

Assets/nature.mp4

17.7 MB
Binary file not shown.

Components/hikr.Button.ux

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<Panel ux:Class="hikr.Button" Alignment="VerticalCenter" Margin="10" Padding="10" FontSize="16">
2+
<string ux:Property="Text" />
3+
<float ux:Property="FontSize" />
4+
5+
<Rectangle Layer="Background" Color="#125F63" CornerRadius="4">
6+
<DropShadow Angle="90" Distance="1" Spread="0.2" Size="2" Color="#00000060" />
7+
</Rectangle>
8+
9+
<hikr.Text Value="{Property Text}" FontSize="{Property FontSize}" TextAlignment="Center" />
10+
11+
<WhilePressed>
12+
<Scale Factor=".95" Duration=".08" Easing="QuadraticOut" />
13+
</WhilePressed>
14+
</Panel>

Components/hikr.Page.ux

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Page ux:Class="hikr.Page">
2+
<Image Layer="Background" File="../Assets/background.jpg" StretchMode="UniformToFill" Opacity=".7" />
3+
</Page>

Components/hikr.Text.ux

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<Text ux:Class="hikr.Text" TextColor="White" />

Components/hikr.TextBox.ux

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<TextBox ux:Class="hikr.TextBox" PlaceholderColor="#fff8" TextColor="White" CaretColor="White" Padding="10,10,0,10" />

Components/hikr.TextView.ux

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<TextView ux:Class="hikr.TextView" PlaceholderColor="#fff8" TextColor="White" CaretColor="White" Padding="5">
2+
<Rectangle Layer="Background" Color="#fff2" CornerRadius="4" />
3+
</TextView>

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Fuse
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MainView.ux

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<App>
2+
<iOS.StatusBarConfig Style="Light" />
3+
<Android.StatusBarConfig Color="#022328" />
4+
5+
<Router ux:Name="router" />
6+
7+
<ClientPanel Background="#022328">
8+
<Navigator DefaultTemplate="splash">
9+
<SplashPage ux:Template="splash" router="router" />
10+
<HomePage ux:Template="home" router="router" />
11+
<EditHikePage ux:Template="editHike" router="router" />
12+
</Navigator>
13+
</ClientPanel>
14+
</App>

0 commit comments

Comments
 (0)