Replies: 1 comment
-
+1. Same for RadioButton. Had to swim very upstream to get that control to look like my others. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Description
The majority of controls in MAUI have no padding/margin by default, which is great. However
Picker
,Switch
, and probably others do. Even worse, these controls have no writablePadding
property, meaning it's impossible to remove the excess whitespace without a native handler (and in fact I haven't been able to remove it even with a native handler).Ideally
Padding
/Margin
properties would be added to the MAUI controls. I assume this hasn't been done yet because it's too hard. Fine, whatever. But at the very least, please set the default padding/margin to 0. It's very easy to add padding to a control that doesn't support it, by surrounding it in aBox
or something. But it's nearly impossible to remove padding from a control.Public API Changes
n/a
Intended Use-Case
This would be useful for basically everyone
Beta Was this translation helpful? Give feedback.
All reactions