Xamarin.Forms: Ratings Interface

I recently implemented a Ratings user interface for a Xamarin.Forms app: Here's the XAML for the Rate interface: Here's the ValueConverter implementation: Here's the viewmodel property and command:

Xamarin.Forms: ShellContent Navigation

Intro I came across a scenario in which my app exposed multiple methods for navigating to a particular page. Method 1: XAML One exposed method was from the app menu in which the navigation was implemented in XAML: Method 2: Code-behind of  Initial page Another exposed method was to perform navigation from another page's code-behind: Method …