├── .gitignore ├── README.md ├── Weather ├── .gitignore ├── Metadata.xml ├── Screenshots │ ├── WeatherApp-All-sml.png │ └── WeatherApp-All.png ├── UpgradeLog.htm ├── UpgradeLog2.htm ├── Weather.Forms │ ├── HistoryPage.xaml │ ├── HistoryPage.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Weather.Forms.csproj │ └── packages.config ├── WeatherApp.sln ├── WeatherApp │ ├── WeatherApp.Droid │ │ ├── Assets │ │ │ ├── AboutAssets.txt │ │ │ ├── FontAwesome.otf │ │ │ └── WeatherIcons.ttf │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── drawable-hdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── buildheader.jpg │ │ │ │ └── buildheader.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── buildheader.jpg │ │ │ │ └── buildheader.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── buildheader.jpg │ │ │ │ └── buildheader.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── buildheader.jpg │ │ │ │ └── buildheader.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── buildheader.jpg │ │ │ │ └── buildheader.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ └── MainFragment.axml │ │ │ ├── menu │ │ │ │ └── menu.axml │ │ │ └── values │ │ │ │ └── Strings.xml │ │ ├── WeatherApp.Droid.csproj │ │ ├── WeatherApp.Droid.csproj.bak │ │ └── packages.config │ ├── WeatherApp.UWP │ │ ├── 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 │ │ │ ├── WeatherIcons.ttf │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── buildheader.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── WeatherApp.UWP.csproj │ │ ├── buildheader.jpg │ │ └── project.json │ ├── WeatherApp.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── Logo.scale-240.png │ │ │ ├── SmallLogo.scale-240.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ └── WideLogo.scale-240.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── WeatherApp.WinPhone.csproj │ ├── WeatherApp.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── Resources │ │ │ ├── FontAwesome.ttf │ │ │ ├── ITunesArtwork │ │ │ ├── ITunesArtwork@2x │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-60@3x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-Small-40.png │ │ │ │ │ ├── Icon-Small-40@2x.png │ │ │ │ │ ├── Icon-Small-40@3x.png │ │ │ │ │ ├── Icon-Small.png │ │ │ │ │ ├── Icon-Small@2x.png │ │ │ │ │ └── Icon-Small@3x.png │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Default-Portrait.png │ │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── WeatherIcons.ttf │ │ │ ├── buildheader.jpg │ │ │ └── buildheader.png │ │ ├── ViewController.cs │ │ ├── ViewController.designer.cs │ │ ├── WeatherApp.iOS.csproj │ │ └── packages.config │ └── WeatherApp │ │ ├── ApiKey.cs │ │ ├── Core.cs │ │ ├── DataService.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Weather.cs │ │ ├── WeatherApp.csproj │ │ └── packages.config └── readme.md └── art ├── embedding-android.gif ├── embedding-ios.gif └── embedding-uwp-desktop.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/README.md -------------------------------------------------------------------------------- /Weather/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/.gitignore -------------------------------------------------------------------------------- /Weather/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Metadata.xml -------------------------------------------------------------------------------- /Weather/Screenshots/WeatherApp-All-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Screenshots/WeatherApp-All-sml.png -------------------------------------------------------------------------------- /Weather/Screenshots/WeatherApp-All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Screenshots/WeatherApp-All.png -------------------------------------------------------------------------------- /Weather/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/UpgradeLog.htm -------------------------------------------------------------------------------- /Weather/UpgradeLog2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/UpgradeLog2.htm -------------------------------------------------------------------------------- /Weather/Weather.Forms/HistoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Weather.Forms/HistoryPage.xaml -------------------------------------------------------------------------------- /Weather/Weather.Forms/HistoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Weather.Forms/HistoryPage.xaml.cs -------------------------------------------------------------------------------- /Weather/Weather.Forms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Weather.Forms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weather/Weather.Forms/Weather.Forms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Weather.Forms/Weather.Forms.csproj -------------------------------------------------------------------------------- /Weather/Weather.Forms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/Weather.Forms/packages.config -------------------------------------------------------------------------------- /Weather/WeatherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp.sln -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Assets/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Assets/FontAwesome.otf -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Assets/WeatherIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Assets/WeatherIcons.ttf -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-hdpi/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-mdpi/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xhdpi/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxhdpi/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/drawable-xxxhdpi/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/layout/MainFragment.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/layout/MainFragment.axml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/menu/menu.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/menu/menu.axml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/WeatherApp.Droid.csproj.bak -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.Droid/packages.config -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/App.xaml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/WeatherIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/WeatherIcons.ttf -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Assets/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Assets/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/WeatherApp.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/WeatherApp.UWP.csproj -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.UWP/project.json -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/App.xaml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/Logo.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/SmallLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/SmallLogo.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Assets/WideLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Assets/WideLogo.scale-240.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Package.appxmanifest -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.WinPhone/WeatherApp.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.WinPhone/WeatherApp.WinPhone.csproj -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Info.plist -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Main.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Main.storyboard -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/FontAwesome.ttf -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/ITunesArtwork -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/ITunesArtwork@2x -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/AppIcons.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/WeatherIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/WeatherIcons.ttf -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/buildheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/buildheader.jpg -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/Resources/buildheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/Resources/buildheader.png -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/ViewController.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/ViewController.designer.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/WeatherApp.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/WeatherApp.iOS.csproj -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp.iOS/packages.config -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/ApiKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/ApiKey.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/Core.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/DataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/DataService.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/Weather.cs -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/WeatherApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/WeatherApp.csproj -------------------------------------------------------------------------------- /Weather/WeatherApp/WeatherApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/WeatherApp/WeatherApp/packages.config -------------------------------------------------------------------------------- /Weather/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/Weather/readme.md -------------------------------------------------------------------------------- /art/embedding-android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/art/embedding-android.gif -------------------------------------------------------------------------------- /art/embedding-ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/art/embedding-ios.gif -------------------------------------------------------------------------------- /art/embedding-uwp-desktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidortinau/build2017-new-in-xamarin-forms/HEAD/art/embedding-uwp-desktop.gif --------------------------------------------------------------------------------