Ralph Bergmann

Results 8 comments of Ralph Bergmann

Take a look at https://github.com/flutter/flutter/pull/16934 This path creates a `lib/build_config.g.dart` file like this one: ``` // GENERATED CODE - DO NOT MODIFY BY HAND class BuildConfig { static const bool...

yes, the `mediaplayer.prepare` method blocks the ui thread, if you have a hugh file the prepare methods needs a couple of seconds.

It works with the [system's accent color](https://github.com/macosui/macos_ui/issues/486#issuecomment-1764197632):

I'm wondering if it might be a compromise to implement only `fromJson` for records instead of not supporting records at all. Most of the time, I only need `fromJson`.

I think I have found a way to achieve what I wanted. 1. select code block with `S` 2. jump to the start/end of the selection with `O` 3. increase/decrease...

I don't know how it all works. I just realized that it doesn't work as expected or as I would wish :-) The [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) links to this project. So I...

The [workaround](https://github.com/macosui/macos_ui/issues/486#issuecomment-1764197632) doesn't work for all buttons/UI elements for me :-( I wonder why it doesn't just use the `MacosThemeData` `primaryColor` for this? Isn't that what the accent color is...

I don't know if each widget should read the color from the system itself. Then, the theme's primary color becomes useless. If a user of this library wants to overwrite...