├── .gitignore ├── LICENSE ├── README.md ├── example ├── EasyLoadingSample.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── EasyLoadingSample.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── 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 ├── EasyLoadingSample.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 │ ├── EasyLoadingSample.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 └── EasyLoadingSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── EasyLoadingSample.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── PageModels │ ├── ListViewPageModel.cs │ └── MainPageModel.cs │ └── Pages │ ├── ListViewPage.xaml │ ├── ListViewPage.xaml.cs │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── images ├── icon.png └── sample.gif └── src ├── Xamarin.Forms.EasyLoading.Multi ├── Platforms │ └── Shared │ │ └── LoadingLayout.cs └── Xamarin.Forms.EasyLoading.Multi.csproj └── Xamarin.Forms.EasyLoading.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/README.md -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/EasyLoadingSample.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/EasyLoadingSample.Android.csproj -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/MainActivity.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/EasyLoadingSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/EasyLoadingSample.iOS.csproj -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Entitlements.plist -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Info.plist -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Main.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /example/EasyLoadingSample.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/EasyLoadingSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/App.xaml -------------------------------------------------------------------------------- /example/EasyLoadingSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/App.xaml.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample/EasyLoadingSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/EasyLoadingSample.csproj -------------------------------------------------------------------------------- /example/EasyLoadingSample/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/FodyWeavers.xml -------------------------------------------------------------------------------- /example/EasyLoadingSample/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/FodyWeavers.xsd -------------------------------------------------------------------------------- /example/EasyLoadingSample/PageModels/ListViewPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/PageModels/ListViewPageModel.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample/PageModels/MainPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/PageModels/MainPageModel.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample/Pages/ListViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/Pages/ListViewPage.xaml -------------------------------------------------------------------------------- /example/EasyLoadingSample/Pages/ListViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/Pages/ListViewPage.xaml.cs -------------------------------------------------------------------------------- /example/EasyLoadingSample/Pages/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/Pages/MainPage.xaml -------------------------------------------------------------------------------- /example/EasyLoadingSample/Pages/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/example/EasyLoadingSample/Pages/MainPage.xaml.cs -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/images/sample.gif -------------------------------------------------------------------------------- /src/Xamarin.Forms.EasyLoading.Multi/Platforms/Shared/LoadingLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/src/Xamarin.Forms.EasyLoading.Multi/Platforms/Shared/LoadingLayout.cs -------------------------------------------------------------------------------- /src/Xamarin.Forms.EasyLoading.Multi/Xamarin.Forms.EasyLoading.Multi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/src/Xamarin.Forms.EasyLoading.Multi/Xamarin.Forms.EasyLoading.Multi.csproj -------------------------------------------------------------------------------- /src/Xamarin.Forms.EasyLoading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sthewissen/Xamarin.Forms.EasyLoading/HEAD/src/Xamarin.Forms.EasyLoading.sln --------------------------------------------------------------------------------