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
Border Radius doesn't work for table; this is a limitation of the TableBorder class, where borderRadius only works with TableBorder.all() and not with TableBorder() or TableBorder.symmetric()
Steps To Reproduce
Add borderRadius to tableBorder in json
borderRadius is not applied
Expected Behavior
Add support for tableBorder.all() constructor.
Additional Context
This can be done in 2 ways.
Intrinsically where if dev passes borderRadius and nothing else then use TableBorder.all() constructor to render; if user passes other variables then ignore borderRadius altogether.
Explicitly where dev can state if they want to use TableBorder or TableBorder.all(); this will also allow us to color, width and style properties which are supported by TableBorder.all()
If approach 2 is to be implemented, then support for TableBorder.symmetric() should also be added to round off the widget
The text was updated successfully, but these errors were encountered:
Description
Border Radius doesn't work for table; this is a limitation of the TableBorder class, where borderRadius only works with TableBorder.all() and not with TableBorder() or TableBorder.symmetric()
Steps To Reproduce
Expected Behavior
Add support for tableBorder.all() constructor.
Additional Context
This can be done in 2 ways.
color
,width
andstyle
properties which are supported by TableBorder.all()If approach 2 is to be implemented, then support for TableBorder.symmetric() should also be added to round off the widget
The text was updated successfully, but these errors were encountered: