├── .gitignore ├── LICENSE ├── Posy.Android ├── Assets │ ├── AboutAssets.txt │ └── Fonts │ │ ├── futura_book.ttf │ │ ├── futura_extrablack.ttf │ │ ├── futura_heavy.ttf │ │ └── futura_medium.ttf ├── MainActivity.cs ├── Posy.Android.csproj ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Renderers │ ├── GradientContentPageRenderer.cs │ └── RoundedContentViewRenderer.cs └── Resources │ ├── AboutResources.txt │ ├── drawable-hdpi │ ├── moon.png │ └── star.png │ ├── drawable-ldpi │ ├── moon.png │ └── star.png │ ├── drawable-mdpi │ ├── moon.png │ └── star.png │ ├── drawable-xhdpi │ ├── moon.png │ └── star.png │ ├── drawable-xxhdpi │ ├── moon.png │ └── star.png │ ├── drawable-xxxhdpi │ ├── moon.png │ └── star.png │ ├── layout │ ├── Tabbar.axml │ └── Toolbar.axml │ ├── mipmap-anydpi-v26 │ ├── icon.xml │ └── icon_round.xml │ ├── mipmap-hdpi │ ├── Icon.png │ └── launcher_foreground.png │ ├── mipmap-mdpi │ ├── icon.png │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ ├── Icon.png │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ ├── Icon.png │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ ├── Icon.png │ └── launcher_foreground.png │ └── values │ ├── colors.xml │ └── styles.xml ├── Posy.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ └── ItunesArtwork@2x.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Posy.iOS.csproj ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── GradientContentPageRenderer.cs │ ├── RoundedContentViewRenderer.cs │ └── TransitionNavigationPageRenderer.cs └── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Fonts │ ├── futura_book.ttf │ ├── futura_extrablack.ttf │ ├── futura_heavy.ttf │ └── futura_medium.ttf │ ├── LaunchScreen.storyboard │ ├── moon.png │ ├── moon@2x.png │ ├── moon@3x.png │ ├── star.png │ ├── star@2x.png │ └── star@3x.png ├── Posy.sln ├── Posy ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── GradientContentPage.cs │ └── RoundedContentView.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Models │ ├── InputModel.cs │ └── ResultModel.cs ├── PageModels │ ├── MainPageModel.cs │ └── ResultPageModel.cs ├── Pages │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── ResultPage.xaml │ └── ResultPage.xaml.cs └── Posy.csproj ├── README.md ├── app.gif ├── droid.jpg └── ios.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/LICENSE -------------------------------------------------------------------------------- /Posy.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Posy.Android/Assets/Fonts/futura_book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Assets/Fonts/futura_book.ttf -------------------------------------------------------------------------------- /Posy.Android/Assets/Fonts/futura_extrablack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Assets/Fonts/futura_extrablack.ttf -------------------------------------------------------------------------------- /Posy.Android/Assets/Fonts/futura_heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Assets/Fonts/futura_heavy.ttf -------------------------------------------------------------------------------- /Posy.Android/Assets/Fonts/futura_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Assets/Fonts/futura_medium.ttf -------------------------------------------------------------------------------- /Posy.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/MainActivity.cs -------------------------------------------------------------------------------- /Posy.Android/Posy.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Posy.Android.csproj -------------------------------------------------------------------------------- /Posy.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Posy.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Posy.Android/Renderers/GradientContentPageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Renderers/GradientContentPageRenderer.cs -------------------------------------------------------------------------------- /Posy.Android/Renderers/RoundedContentViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Renderers/RoundedContentViewRenderer.cs -------------------------------------------------------------------------------- /Posy.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-hdpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-hdpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-hdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-hdpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-ldpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-ldpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-ldpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-ldpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-mdpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-mdpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-mdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-mdpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xhdpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xhdpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xhdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xhdpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xxhdpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xxhdpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xxhdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xxhdpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xxxhdpi/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xxxhdpi/moon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/drawable-xxxhdpi/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/drawable-xxxhdpi/star.png -------------------------------------------------------------------------------- /Posy.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Posy.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Posy.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /Posy.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Posy.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Posy.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Posy.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Info.plist -------------------------------------------------------------------------------- /Posy.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Main.cs -------------------------------------------------------------------------------- /Posy.iOS/Posy.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Posy.iOS.csproj -------------------------------------------------------------------------------- /Posy.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Posy.iOS/Renderers/GradientContentPageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Renderers/GradientContentPageRenderer.cs -------------------------------------------------------------------------------- /Posy.iOS/Renderers/RoundedContentViewRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Renderers/RoundedContentViewRenderer.cs -------------------------------------------------------------------------------- /Posy.iOS/Renderers/TransitionNavigationPageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Renderers/TransitionNavigationPageRenderer.cs -------------------------------------------------------------------------------- /Posy.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/Fonts/futura_book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Fonts/futura_book.ttf -------------------------------------------------------------------------------- /Posy.iOS/Resources/Fonts/futura_extrablack.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Fonts/futura_extrablack.ttf -------------------------------------------------------------------------------- /Posy.iOS/Resources/Fonts/futura_heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Fonts/futura_heavy.ttf -------------------------------------------------------------------------------- /Posy.iOS/Resources/Fonts/futura_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/Fonts/futura_medium.ttf -------------------------------------------------------------------------------- /Posy.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Posy.iOS/Resources/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/moon.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/moon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/moon@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/moon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/moon@3x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/star.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/star@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/star@2x.png -------------------------------------------------------------------------------- /Posy.iOS/Resources/star@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.iOS/Resources/star@3x.png -------------------------------------------------------------------------------- /Posy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy.sln -------------------------------------------------------------------------------- /Posy/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/App.xaml -------------------------------------------------------------------------------- /Posy/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/App.xaml.cs -------------------------------------------------------------------------------- /Posy/Controls/GradientContentPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Controls/GradientContentPage.cs -------------------------------------------------------------------------------- /Posy/Controls/RoundedContentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Controls/RoundedContentView.cs -------------------------------------------------------------------------------- /Posy/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/FodyWeavers.xml -------------------------------------------------------------------------------- /Posy/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/FodyWeavers.xsd -------------------------------------------------------------------------------- /Posy/Models/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Models/InputModel.cs -------------------------------------------------------------------------------- /Posy/Models/ResultModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Models/ResultModel.cs -------------------------------------------------------------------------------- /Posy/PageModels/MainPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/PageModels/MainPageModel.cs -------------------------------------------------------------------------------- /Posy/PageModels/ResultPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/PageModels/ResultPageModel.cs -------------------------------------------------------------------------------- /Posy/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Pages/MainPage.xaml -------------------------------------------------------------------------------- /Posy/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /Posy/Pages/ResultPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Pages/ResultPage.xaml -------------------------------------------------------------------------------- /Posy/Pages/ResultPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Pages/ResultPage.xaml.cs -------------------------------------------------------------------------------- /Posy/Posy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/Posy/Posy.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/README.md -------------------------------------------------------------------------------- /app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/app.gif -------------------------------------------------------------------------------- /droid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/droid.jpg -------------------------------------------------------------------------------- /ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/KickassUI.InSpace/HEAD/ios.png --------------------------------------------------------------------------------