Ralph Bergmann
Ralph Bergmann
I tried the example app on a real iPhone device. When I switch the phone off audio stops playing. When I switch it on again it continue playing. Do you...
I'm a newbie and I'm wondering how I can add inline styling to a div element. Finally I need something like this: ``. Adding the `id` was with the help...
I need to test a host with a ip address but it is always reachable. var addr = sockaddr_in() addr.sin_len = UInt8(MemoryLayout.size) addr.sin_family = sa_family_t(AF_INET) addr.sin_addr.s_addr = inet_addr("17.5.12.85") if let...
The lines to separate the action buttons are blurry. In `cupertiono/dialog.dart` the `dividerThickness` is callculated this way: ``` dividerThickness: _kDividerThickness / MediaQuery.of(context).devicePixelRatio ``` But do we need the `devicePixelRatio` to...
There is an option to [turn off syntax highlighting](https://github.com/Wilfred/difftastic/commit/12ef8f97da70bfa0ff18232ee1d0313de1906a75), but I have no clue how to use it :-( I use `difftastic` to make `git diff` better. But sometimes, it...
### Did you check the docs? - [X] I have read all the flash.nvim docs ### Is your feature request related to a problem? Please describe. First, I like the...
You wrote that "[Android doesn't allow subscribing to lock task mode changes](https://github.com/MewsSystems/mews-flutter/blob/master/kiosk_mode/lib/kiosk_mode.dart#L73)". Have you tried the [Lifecycle callbacks](https://developer.android.com/work/dpc/dedicated-devices/lock-task-mode#lifecycle_callbacks)? It sounds like it is possible to be notified when the mode...
If a class is not generic, or it is generic but the generic type is not defined, the creation of an object of that class is not recognized. I use...
A few weeks ago, Dart 3 got released. I'm wondering when it is time to migrate my lib to Dart 3 or if I should stay at Dart 2 to...