Feodor Fitsner
Feodor Fitsner
Did you know that you can properly put `Text` (or anything) inside `ElevatedButton.content`?
It's `PopupMenuItem` has `content` property, not `PopupMenuButton`. Don't see any issues adding `PopupMenuButton.content` though. Will do it in the next release.
Could you please provide more info like what OS is that, version of Python, etc.?
Full error message, a code sample to reproduce the issue.
Well, it would be more helpful for Flutter if @mehrdad-dev submit an issue: install Flutter SDK, do a simple code repro, run `flutter doctor`, etc. - do all the steps...
@mehrdad-dev Did you manage to submit a report to Flutter team?
If you add "scroll" it becomes scrollable, right, which is maybe not exactly what you need? Maybe...this could be solved with `min_height`? I didn't add `min_/max_` to keep it simple,...
Oh, I probably meant `max_height`, so it could be less or equal. I will experiment on that.
So, it makes sense to expose `clip_behavior` for some controls only, like `Column`, `Row`, `Stack`: https://api.flutter.dev/flutter/widgets/Flex/clipBehavior.html Not sure about `Container` - it's related to decoration somehow, not a child content:...
I've just discovered that `Stack` has [`hardClip` behavior](https://api.flutter.dev/flutter/widgets/Stack/clipBehavior.html) enabled by default, so if you put anything to `Stack` with fixed size or `expand` its contents will be clipped. So, your...