Another way might be something like: within your shared project create an Inteface called IKeyboardListener that is public Within the page's code behind (or viewmodel) where you want to listen for co… (View Post)
Is this nice? Yes it is! <Grid> <Grid.IsVisible> <OnIdiom x:TypeArguments="x:Boolean"> <OnIdiom.Phone>True</OnIdiom.Phone> </OnIdiom> </Grid.IsVisible… (View Post)
in XF 3.2.0 + you can now use shorthand: <Button HeightRequest="{OnPlatform iOS=60,Android=80, Default=40}"/> so... Something like this becomes possible: <ContentPage.Resources>… (View Post)
@"DavidGerding.4136" Xaml compilation is causing the problem. I've had this issue for years. Here is the fix: remove all [XamlCompilation(XamlCompilationOptions.Compile)] from your app. The… (View Post)
I get this in Xamarin.Forms. I always have to find/replace: [XamlCompilation(XamlCompilationOptions.Compile)] with //[XamlCompilation(XamlCompilationOptions.Compile)] Then I can debug with no issues. (View Post)