You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As you can see from the screenshot the radio button (using the RadioButtonGroupFieldBlocBuilder widget) is slightly pushed to the right. I believe this is because it's inside of a SizedBox, but correct me if I'm wrong.
What would be the best way to align it to the left side of the screen? I used Transform.translate now, but it feels a bit hacky.
Also I wonder if it's possible to style individual group items and add spacing between them. Since the FieldItem widget isn't very customizable.
The text was updated successfully, but these errors were encountered:
EzraBerendsen
changed the title
Possible to reduce radio button size?
Possibility to style radio buttons?
Mar 24, 2022
@Ezrabeer I don't think the SizedBox slightly pushed the Radio to the right. The reason you think it moved right because the widget Radio has a MaterialTapTargetSize and make the radio button not smaller than kMinInteractiveDimension. So it looks righty to you.
As you can see from the screenshot the radio button (using the RadioButtonGroupFieldBlocBuilder widget) is slightly pushed to the right. I believe this is because it's inside of a
SizedBox
, but correct me if I'm wrong.What would be the best way to align it to the left side of the screen? I used
Transform.translate
now, but it feels a bit hacky.Also I wonder if it's possible to style individual group items and add spacing between them. Since the FieldItem widget isn't very customizable.
The text was updated successfully, but these errors were encountered: