Jean-Emmanuel BAILLAT

Results 26 comments of Jean-Emmanuel BAILLAT

Hello @edsnider , I've just run your plugin on Android emulator and I've encountered the same issue described by DarkSpikeX. Answer to your question : Android11 was running (API 30).

Hi @dalton5 , a workaround which worked for me only on Android : ask the user to open Web browser on device, go to facebook.com and disconnect from active session....

Maybe it's related to this https://github.com/xamarin/XamarinCommunityToolkit/issues/1104 ?

Hi, I actually got the issue from an endless recursive loop in the CarouselViewImplementation. Indeed, the method `Android.App.Activity FindActivity(Context context)` is continuously called itself here: ``` var contextThemeWrapper = _context...

Here are some logs in case that helps a little bit: Console logs for a working Carousel controller ``` -------> Call of FindActivity from CarouselViewRenderer -------> FindActivity called 1 times...

Actually @alexrainman , I think it is because the same object is passed through the recursive call. Indeed, _context.BaseContext is always passed, so if MainActivity is not found during the...

Hello @alexrainman , sorry to spam you, but I think I have fixed my issue by replacing https://github.com/alexrainman/CarouselView/blob/eda4fd3757297a619aef4518af2a1da441402440/CarouselView/CarouselView.FormsPlugin.Android/CarouselViewImplementation.cs#L82 with `var contextThemeWrapper = context as Android.Views.ContextThemeWrapper;` But I'm only able to...

Hello @hamidish , Ensure that your file is referenced in your Xamarin.iOS project file (.csproj) as a BundleResource : ```xml Always ``` And then you could try this code :...

Hi, I am actually facing this issue as well. Just after I have changed the Source property, then the position is not updating anymore, only when I stop and play...

I have experienced this as well, on iOS, the default "Closed" state surprised me a little bit.