Daniël Roek

Results 6 comments of Daniël Roek

Hey @blackbeario, In the plugin this is the line that handles the MacOS keyEvent: ```dart ... } else if (keyEvent.data is RawKeyEventDataMacOs) { _controller.sink .add(((keyEvent.data) as RawKeyEventDataMacOs).keyLabel); } ``` The...

Hi @SooHoon95 , When using `keyLabel` we found that some characters where displayed wrong, for example a '2' instead of '@'. Because it ignores modifiers. This is why we chose...

When reproducing, following error is thrown: > [VERBOSE-2:ui_dart_state.cc(166)] Unhandled Exception: > PlatformException(ERROR_ALREADY_REQUESTING_PERMISSION, A request for permissions is already running, please wait for it to finish before doing another request., null)...

When testing on iOS emulator, after reproducing and closing the example app. The application says PermissionStatus.granted on locationAlways.

Hi @sidrao2006 , I'm not quite sure what you would like to see. What exactly should be returned by the onImageLoad() callback. To see is an image has already been...

@sidrao2006 I added the enhancement label to this issue, for now you could use `imageLoaded = DefaultCacheManager().getFileFromMemory(url) != null;` in your code.