├── .gitignore ├── Assets ├── background.jpg └── nature.mp4 ├── Components ├── hikr.Button.ux ├── hikr.Page.ux ├── hikr.Text.ux ├── hikr.TextBox.ux └── hikr.TextView.ux ├── LICENSE ├── MainView.ux ├── Modules ├── Backend.js └── Context.js ├── Pages ├── EditHikePage.js ├── EditHikePage.ux ├── HomePage.js ├── HomePage.ux ├── SplashPage.js └── SplashPage.ux ├── README.md ├── hikr.gif └── hikr.unoproj /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .uno/ 3 | -------------------------------------------------------------------------------- /Assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Assets/background.jpg -------------------------------------------------------------------------------- /Assets/nature.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Assets/nature.mp4 -------------------------------------------------------------------------------- /Components/hikr.Button.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Components/hikr.Button.ux -------------------------------------------------------------------------------- /Components/hikr.Page.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Components/hikr.Page.ux -------------------------------------------------------------------------------- /Components/hikr.Text.ux: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Components/hikr.TextBox.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Components/hikr.TextBox.ux -------------------------------------------------------------------------------- /Components/hikr.TextView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Components/hikr.TextView.ux -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/LICENSE -------------------------------------------------------------------------------- /MainView.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/MainView.ux -------------------------------------------------------------------------------- /Modules/Backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Modules/Backend.js -------------------------------------------------------------------------------- /Modules/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Modules/Context.js -------------------------------------------------------------------------------- /Pages/EditHikePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/EditHikePage.js -------------------------------------------------------------------------------- /Pages/EditHikePage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/EditHikePage.ux -------------------------------------------------------------------------------- /Pages/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/HomePage.js -------------------------------------------------------------------------------- /Pages/HomePage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/HomePage.ux -------------------------------------------------------------------------------- /Pages/SplashPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/SplashPage.js -------------------------------------------------------------------------------- /Pages/SplashPage.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/Pages/SplashPage.ux -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/README.md -------------------------------------------------------------------------------- /hikr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/hikr.gif -------------------------------------------------------------------------------- /hikr.unoproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuse-open/hikr/HEAD/hikr.unoproj --------------------------------------------------------------------------------