James McIntosh

Results 45 comments of James McIntosh

Ah I see, getSinglePermissionStatus is for iOS and getPermissionStatus is for Android. This is VERY confusing and not obvious looking at the method signatures, I would recommend either: * Implement...

That makes sense as to why you took that approach, if you pass through an array of permissions into the iOS code you should be able to iterate them and...

Hi @Dn-a, I'm trying to do the same thing and came across the same problem. What is happening is the GuestureDetector inside the build method is receiving the drag events...

Ah, that improves the situation a lot but if I try to horizontally pan anywhere on the map the situation still occurs with the drawer taking precedence. The only way...

Yes, that's exactly what I have and HorizontalDragGestureRecognizer. @Dn-a, are you able to pan the map horizontally without opening the drawer?

Hi @Dn-a, it's still causing me an issue, I will try and strip it back to make a standalone example.

@mikolak Do you know why the client isn't treated as a singleton or an error throw if you try call createClient a second time without destroying it? Either of those...

@psycura This normally happens if you have called createClient multiple times without destroying it in between. see issues #526 & #532

@psycura That's what is causing the problem, you are calling createClient multiple times without destroying in between. Either don't create the client multiple times or destroy it before calling create...

@psycura What if you remove `await peripheral.disconnectOrCancelConnection();`?