├── .gitattributes ├── .gitignore ├── CustomSplash.sln ├── CustomSplash ├── CustomSplash.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── CustomSplash.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── SplashScreen.png │ │ ├── drawable-xhdpi │ │ │ └── SplashScreen.png │ │ ├── drawable-xxhdpi │ │ │ └── SplashScreen.png │ │ ├── drawable-xxxhdpi │ │ │ └── SplashScreen.png │ │ ├── drawable │ │ │ ├── SplashScreen.png │ │ │ └── splash_screen.xml │ │ ├── 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 │ └── SplashActivity.cs ├── CustomSplash.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── CustomSplash.UWP.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── CustomSplash.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ │ └── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── SplashScreen.png │ ├── CustomSplash.iOS.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard └── CustomSplash │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomSplash.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── SplashPage.xaml │ └── SplashPage.xaml.cs └── LICENSE /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomSplash.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash.sln -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/CustomSplash.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/CustomSplash.Android.csproj -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/MainActivity.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable-hdpi/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable-hdpi/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable-xhdpi/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable-xhdpi/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable-xxhdpi/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable-xxhdpi/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable-xxxhdpi/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable-xxxhdpi/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/drawable/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/drawable/splash_screen.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.Android/SplashActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.Android/SplashActivity.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/App.xaml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/App.xaml.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/CustomSplash.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/CustomSplash.UWP.csproj -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/MainPage.xaml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Assets.xcassets/SplashScreen.imageset/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Assets.xcassets/SplashScreen.imageset/SplashScreen.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/CustomSplash.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/CustomSplash.iOS.csproj -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Entitlements.plist -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Info.plist -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Main.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/Default.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /CustomSplash/CustomSplash.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/App.xaml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/App.xaml.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/CustomSplash.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/CustomSplash.csproj -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/MainPage.xaml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/MainPage.xaml.cs -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/SplashPage.xaml -------------------------------------------------------------------------------- /CustomSplash/CustomSplash/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/CustomSplash/CustomSplash/SplashPage.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mallibone/LaunchExperience/HEAD/LICENSE --------------------------------------------------------------------------------