WebView Height in Xamarin Forms

This is how you set the height and width to fill the screen in your Xamarin Forms app. Using Xamarin Essentials, get the device's height and width. var mainDisplayInfo = DeviceDisplay.MainDisplayInfo;    …

Connecting WordPress and Xamarin

Do you have a Wordpress website and need to connect it to you Xamarin mobile application? By "connect" I mean: User Creation User Roles Login View Post or Page Add…

Xamarin Forms MVVM and SQLite

This is how I use Xamarin Forms MVVM and SQLite. Create ViewModels for each page (view) you have and make sure each ViewModel inherits the BaseViewModel (#7 below). In my…

Xamarin Forms Splash Screen

This is how I add a Splash Screen in my Xamarin Forms apps Create a new ContentPage ie Splash.xaml Set the MainPage in your App.xaml.cs file to MainPage = new…

Xamarin Forms Upload Image to PHP

This is how I upload an image in Xamarin Forms to a PHP site Xamarin Forms Page using Plugin.Media; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.IO; using…