public ServiceLocationPage()
        {
            InitializeComponent();

            //this.BackgroundColor = Color.FromRgb(0, 200, 255);
            this.BackgroundColor = Color.White;

            var viewModel = new ServiceLocationPageViewModel();

            this.BindingContext = viewModel;
        }
        public ServiceLocationPage()
        {
            InitializeComponent();

            if (Device.RuntimePlatform == Device.Android)
            {
                NavigationPage.SetHasBackButton(this, false);
            }

            this.BackgroundColor = Color.White;

            topLabel.FontFamily       = Device.RuntimePlatform == Device.iOS ? "Cabin-Bold" : "Cabin-Bold.ttf#Cabin-Bold";
            residenceLabel.FontFamily = Device.RuntimePlatform == Device.iOS ? "Cabin-Bold" : "Cabin-Bold.ttf#Cabin-Bold";
            bedLabel.FontFamily       = Device.RuntimePlatform == Device.iOS ? "Cabin-Bold" : "Cabin-Bold.ttf#Cabin-Bold";
            bathLabel.FontFamily      = Device.RuntimePlatform == Device.iOS ? "Cabin-Bold" : "Cabin-Bold.ttf#Cabin-Bold";

            var viewModel = new ServiceLocationPageViewModel();

            this.BindingContext = viewModel;
        }