Pâris DOUADY
Pâris DOUADY
The recommended (cf examples) way to pass properties to widgets today is to do this: ```rust let mut l = List::row(); l.main_axis_alignment = ...; l.show_children(|| { ... }); ``` I...
There are lots of useful cases where changing the cursor is important to indicate what action is about to be done. For example links, resizing, dragging, text-editable... See [cursor-icon](https://github.com/rust-windowing/cursor-icon/blob/main/src/lib.rs#L128) Since...
Sometimes parameter don't make sense: negative radius, [flex=0 for a spacer](https://api.flutter.dev/flutter/widgets/Spacer/Spacer.html). I also think of infinitely sized objects that can crash the painter in debug (overflow error when building the...
ExternalUnknown is deprecated: https://developer.apple.com/documentation/avfoundation/avcapturedevicetypeexternalunknown Causes my camera to not be detected (but works with External). Maybe we should have both ?... Not sure how depreciation works on mac APIs.