├── .gitignore ├── LICENSE ├── LiquidSwipe.sln ├── LiquidSwipe ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── LiquidSwipe.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainPageWithSwipe.xaml ├── MainPageWithSwipe.xaml.cs ├── Package.appxmanifest └── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LICENSE -------------------------------------------------------------------------------- /LiquidSwipe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe.sln -------------------------------------------------------------------------------- /LiquidSwipe/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/App.xaml -------------------------------------------------------------------------------- /LiquidSwipe/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/App.xaml.cs -------------------------------------------------------------------------------- /LiquidSwipe/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/StoreLogo.png -------------------------------------------------------------------------------- /LiquidSwipe/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /LiquidSwipe/LiquidSwipe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/LiquidSwipe.csproj -------------------------------------------------------------------------------- /LiquidSwipe/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/MainPage.xaml -------------------------------------------------------------------------------- /LiquidSwipe/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/MainPage.xaml.cs -------------------------------------------------------------------------------- /LiquidSwipe/MainPageWithSwipe.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/MainPageWithSwipe.xaml -------------------------------------------------------------------------------- /LiquidSwipe/MainPageWithSwipe.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/MainPageWithSwipe.xaml.cs -------------------------------------------------------------------------------- /LiquidSwipe/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Package.appxmanifest -------------------------------------------------------------------------------- /LiquidSwipe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LiquidSwipe/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/LiquidSwipe/Properties/Default.rd.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ratishphilip/LiquidSwipe/HEAD/README.md --------------------------------------------------------------------------------