├── .droidres └── .refitxfsample.droidres.db ├── .gitignore ├── .vs └── RefitXFSample │ └── xs │ └── UserPrefs.xml ├── Droid ├── Assets │ └── AboutAssets.txt ├── FodyWeavers.xml ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── RefitXFSample.Droid.csproj ├── Resources │ ├── AboutResources.txt │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── icon.png │ ├── drawable-xxhdpi │ │ └── icon.png │ ├── drawable │ │ └── icon.png │ ├── layout │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ └── values │ │ └── styles.xml ├── bin │ └── Debug │ │ ├── FormsViewGroup.dll.mdb │ │ ├── FormsViewGroup.pdb │ │ ├── Microsoft.AspNetCore.WebUtilities.xml │ │ ├── Microsoft.Extensions.Primitives.xml │ │ ├── Microsoft.Net.Http.Headers.xml │ │ ├── Mono.Android.pdb │ │ ├── Newtonsoft.Json.xml │ │ ├── PropertyChanged.xml │ │ ├── Refit.xml │ │ ├── RefitXFSample.Droid.pdb │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ ├── System.Text.Encodings.Web.xml │ │ ├── Xamarin.Forms.Core.dll.mdb │ │ ├── Xamarin.Forms.Core.pdb │ │ ├── Xamarin.Forms.Core.xml │ │ ├── Xamarin.Forms.Platform.Android.dll.mdb │ │ ├── Xamarin.Forms.Platform.Android.pdb │ │ ├── Xamarin.Forms.Xaml.dll.mdb │ │ ├── Xamarin.Forms.Xaml.pdb │ │ ├── Xamarin.Forms.Xaml.xml │ │ ├── com.crossgeek.samples.RefitXFSample-Signed.apk │ │ └── com.crossgeek.samples.RefitXFSample.apk ├── obj │ └── .cache │ │ └── com.crossgeek.samples.RefitXFSample.flag └── packages.config ├── README.md ├── RefitXFSample.sln ├── RefitXFSample ├── App.xaml ├── App.xaml.cs ├── Config.cs ├── Models │ ├── MakeUp.cs │ └── News.cs ├── RefitXFSample.projitems ├── RefitXFSample.shproj ├── Services │ ├── ApiManager.cs │ ├── ApiService.cs │ ├── IApiManager.cs │ ├── IApiService.cs │ ├── IMakeUpApi.cs │ └── IRedditApi.cs ├── ViewModels │ ├── BaseViewModel.cs │ └── MainPageViewModel.cs └── Views │ ├── MainPage.xaml │ └── MainPage.xaml.cs └── iOS ├── AppDelegate.cs ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Entitlements.plist ├── FodyWeavers.xml ├── Info.plist ├── LaunchScreen.storyboard ├── Main.cs ├── RefitXFSample.iOS.csproj └── packages.config /.droidres/.refitxfsample.droidres.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/.droidres/.refitxfsample.droidres.db -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/RefitXFSample/xs/UserPrefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/.vs/RefitXFSample/xs/UserPrefs.xml -------------------------------------------------------------------------------- /Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Droid/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/FodyWeavers.xml -------------------------------------------------------------------------------- /Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/MainActivity.cs -------------------------------------------------------------------------------- /Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Droid/RefitXFSample.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/RefitXFSample.Droid.csproj -------------------------------------------------------------------------------- /Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Droid/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Droid/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/FormsViewGroup.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/FormsViewGroup.dll.mdb -------------------------------------------------------------------------------- /Droid/bin/Debug/FormsViewGroup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/FormsViewGroup.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Microsoft.AspNetCore.WebUtilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Microsoft.AspNetCore.WebUtilities.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Microsoft.Extensions.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Microsoft.Extensions.Primitives.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Microsoft.Net.Http.Headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Microsoft.Net.Http.Headers.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Mono.Android.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Mono.Android.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/PropertyChanged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/PropertyChanged.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Refit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Refit.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/RefitXFSample.Droid.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/RefitXFSample.Droid.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Core.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Core.dll.mdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Core.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Core.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Platform.Android.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Platform.Android.dll.mdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Platform.Android.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Platform.Android.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Xaml.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Xaml.dll.mdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Xaml.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Xaml.pdb -------------------------------------------------------------------------------- /Droid/bin/Debug/Xamarin.Forms.Xaml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/Xamarin.Forms.Xaml.xml -------------------------------------------------------------------------------- /Droid/bin/Debug/com.crossgeek.samples.RefitXFSample-Signed.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/com.crossgeek.samples.RefitXFSample-Signed.apk -------------------------------------------------------------------------------- /Droid/bin/Debug/com.crossgeek.samples.RefitXFSample.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/bin/Debug/com.crossgeek.samples.RefitXFSample.apk -------------------------------------------------------------------------------- /Droid/obj/.cache/com.crossgeek.samples.RefitXFSample.flag: -------------------------------------------------------------------------------- 1 | DebugAnyCPU-s 192.168.123.101:5555 2 | -------------------------------------------------------------------------------- /Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/Droid/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RefitXamarinFormsSample -------------------------------------------------------------------------------- /RefitXFSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample.sln -------------------------------------------------------------------------------- /RefitXFSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/App.xaml -------------------------------------------------------------------------------- /RefitXFSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/App.xaml.cs -------------------------------------------------------------------------------- /RefitXFSample/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Config.cs -------------------------------------------------------------------------------- /RefitXFSample/Models/MakeUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Models/MakeUp.cs -------------------------------------------------------------------------------- /RefitXFSample/Models/News.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Models/News.cs -------------------------------------------------------------------------------- /RefitXFSample/RefitXFSample.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/RefitXFSample.projitems -------------------------------------------------------------------------------- /RefitXFSample/RefitXFSample.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/RefitXFSample.shproj -------------------------------------------------------------------------------- /RefitXFSample/Services/ApiManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/ApiManager.cs -------------------------------------------------------------------------------- /RefitXFSample/Services/ApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/ApiService.cs -------------------------------------------------------------------------------- /RefitXFSample/Services/IApiManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/IApiManager.cs -------------------------------------------------------------------------------- /RefitXFSample/Services/IApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/IApiService.cs -------------------------------------------------------------------------------- /RefitXFSample/Services/IMakeUpApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/IMakeUpApi.cs -------------------------------------------------------------------------------- /RefitXFSample/Services/IRedditApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Services/IRedditApi.cs -------------------------------------------------------------------------------- /RefitXFSample/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /RefitXFSample/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /RefitXFSample/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Views/MainPage.xaml -------------------------------------------------------------------------------- /RefitXFSample/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/RefitXFSample/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/Entitlements.plist -------------------------------------------------------------------------------- /iOS/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/FodyWeavers.xml -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/Main.cs -------------------------------------------------------------------------------- /iOS/RefitXFSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/RefitXFSample.iOS.csproj -------------------------------------------------------------------------------- /iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrossGeeks/RefitXamarinFormsSample/HEAD/iOS/packages.config --------------------------------------------------------------------------------