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
Currently, the InputDecorator of FormBuilderCheckboxList, FormBuilderRadio, and FormBuilderSegmentedControl's border is set to InputBorder.none and contentPadding is set to EdgeInsets.only(top: 10.0, bottom: 0.0).
Because of this, border: OutlineInputBorder() is not working.
For all other widgets, giving border: OutlineInputBorder() work fine.
I could get the desired result.
Why set border to InputBorder.none? Are there any reasons?
This is my screen capture after removing border: InputBorder.none and setting contentPadding: EdgeInsets.only(top: 10.0, left: 12.0, bottom: 0.0).
I think there is no reason to set border to InputBorder.none.
The text was updated successfully, but these errors were encountered:
lightlitebug
changed the title
[suggestion] The InputDecorator of FormBuilderCheckboxList, FormBuilderRadio, FormBuilderSegmentedControl 's InputDecorator need to be changed.
[suggestion] The InputDecorator of FormBuilderCheckboxList, FormBuilderRadio, FormBuilderSegmentedControl need to be changed.
Oct 28, 2019
The reason for doing this was simply because I didn't like the spaces
created around the fields.
I realize that this may have been ill-advised.
In the next release, I'll have contentPadding and border attributes
removed from the library so that the developer decides how that goes.
Cheers!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#160>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AM2JVSTAFMGQ243VGZVXOFDQR2VWNANCNFSM4JF342NA>
.
Currently, the InputDecorator of FormBuilderCheckboxList, FormBuilderRadio, and FormBuilderSegmentedControl's border is set to
InputBorder.none
andcontentPadding
is set toEdgeInsets.only(top: 10.0, bottom: 0.0)
.Because of this,
border: OutlineInputBorder()
is not working.For all other widgets, giving
border: OutlineInputBorder()
work fine.By changing the packages setting from
to
I could get the desired result.
Why set
border
toInputBorder.none
? Are there any reasons?This is my screen capture after removing border: InputBorder.none and setting contentPadding: EdgeInsets.only(top: 10.0, left: 12.0, bottom: 0.0).
I think there is no reason to set
border
toInputBorder.none
.The text was updated successfully, but these errors were encountered: