Matej Knopp

Results 242 comments of Matej Knopp

Another one: ```dart const SizedBox(height: 16), Text( state.message, style: Theme.of(context).textTheme.titleMedium, ), const SizedBox(height: 16), ``` I personally would not split the `Text` widget. I don't think having theme on separate...

Original: ```dart child: AppBar( bottom: TabBar( tabs: [ Tab(icon: Icon(Icons.attach_money)), Tab(icon: Icon(Icons.directions_car)), Tab(icon: Icon(Icons.directions_transit)), ], ), ), ``` New: ```dart child: AppBar( bottom: TabBar( tabs: [ Tab( icon: Icon(Icons.attach_money), ),...

@angelosilvestre, can you give this another go?

@matthew-carroll, sorry for the delay, added test.

> In my case the entries are ~250kb, due to the fact that we have transitive inclusion of all `-I` and `-isystem` flags. That's how bazel generates the clang commands....

@andreidevo, can you provide a reproducible example? As for the original issue, instead of putting SuperEditor into `SingleChildScrollView`, you can put it inside `CustomScrollView` as a sliver and things will...

@KrisBraun, look at [this comment](https://github.com/superlistapp/super_editor/issues/2266#issuecomment-2306862918). It has a widget that will wrap superlist in a box, which should solve your issue.

I am wondering if `--enable-multi-window` is the best way to go about this. Is there a reason why this would be a flag that has to be specified for each...

What is the reason for trying to merge this without the appropriate framework API? This is tightly coupled to added framework API, I don't quite understand how this can be...

Here is my work in progress branch based on this work but converting it to ffi: https://github.com/knopp/flutter/tree/windows_multi_window_ffi It's bit rough but it mostly works. If you compare the [`window.dart`](https://github.com/knopp/flutter/blob/windows_multi_window_ffi/packages/flutter/lib/src/widgets/window.dart) to...