SuavePirate / Xamarin.Forms.Controls.FloatingActionButton

A custom view to create a FloatingActionButton for both Android and iOS as part of Material Design
MIT License
120 stars 38 forks source link

Xamarin Forms 3.0.1 #23

Open bcaceiro opened 6 years ago

bcaceiro commented 6 years ago

Is this compliant with latest Support Libraries and Xamarin 3.0? I'm getting XA errors, and I think it's related to this package.

Elrouille commented 6 years ago

For me it was working on iOS but not in Android.

I had the following error : java.lang.illegalstateexception you need to use a theme.appcompat theme

After some time and a lot of asking/searching, it appeared that it is caused because in the latest versions of Xamarin there is a notion called "context" you need to use in your renderer constructor !

PS : Currently using Xamarin Forms 3.1 and Android 27

CleverSoftwarePoland commented 6 years ago
      For me it was working on iOS but not in Android.

I had the following error : java.lang.illegalstateexception you need to use a theme.appcompat theme After some time and a lot of asking/searching, it appeared that it is caused because in the latest versions of Xamarin there is a notion called "context" you need to use in your renderer constructor ! PS : Currently using Xamarin Forms 3.1 and Android 27

Could you share your solution for appcompat theme problem. I'm struggling with the same problem and can't fin a solution.