Norbert Kozsir

Results 32 comments of Norbert Kozsir

Thanks for the quick response! Catching errors as soon as possible greatly reduces iteration lengths (if I want to be sure that I set up everything correctly I first have...

I'm in the middle of a big refactor right now. Once that's done I'll there'S going to be a lot of documentation on how to easily add support of all...

Hey, sorry - I'm not quite sure what the issue is. ``` DynamicTheme.of(context).setThemeData(Theme.of(context).copyWith()); ``` should work just fine. Also, change `Theme.of(context).brightness` to `brightness` as the builder supplies a brightness. This...

I overlooked this issue, I'm sorry. If you haven't already fixed it - does wrapping this widget in an `Expanded` help? Or did adding the shrinkwrap property fix the issue?

Do you think forcing the app to be dark when the platformBrightness is set to dark is okay (without allowing the user to switch back in the app)?

We'd still want to have the ability to overwrite that (especially for backward compatibility sake!). I'm pretty busy over the next couple of days, if you want to, you can...

That seems weird, are you sure your `Pref` class is working as expected? Just looked over the code, and this should in fact work.

Sorry for the late reply! The idea behind the live compilation server was to replace all the declarations of the widgets with custom ones that implement the toMap method therefore...

Sorry but this is not supported by this library. If anybody wants to implement this I could share a few ideas of how to start.

Indeed, I've been working on implementing it, but it is pretty tricky to get right. I wanted to write a generic implementation of properties which rely on object subclasses but...