forui 0.3.0 forui: ^0.3.0 copied to clipboard
Forui is a UI library for Flutter that provides a set of minimalistic widgets heavily inspired by Shadcn/ui.
0.3.0 #
0.2.0 #
Additions #
- Add
FCheckbox
. - Add
FHeader.nested
. - Add
FProgress
.
Enhancements #
- Breaking Move
FHeaderStyle
toFHeaderStyles.rootStyle
. - Breaking Move
FHeaderActionStyle.padding
toFRootHeaderStyle.actionSpacing
. - Breaking Suffix style parameters with
Style
, i.e.FRootHeaderStyle.action
has been renamed toFRootHeaderStyle.actionStyle
. - Breaking Raw fields have been removed, wrap strings with the Text() widget. E.g.
FButton(label: 'Hello')
orFButton(rawLabel: 'Hello')
should be replaced withFButton(label: Text('Hello'))
. - Change
FTextField
to be usable inForm
s. - Change
FTextFieldStyle
's default vertical content padding from5
to15
. - Split exports in
forui.dart
into sub-libraries.
Fixes #
- Fix missing
key
parameter inFTextField
constructors. - Breaking
FButton.prefixIcon
andFButton.suffixIcon
have been renamed toFButton.prefix
andFButton.suffix
. - Fix padding inconsistencies in
FCard
andFDialog
.
0.1.0 #
- Initial release! 🚀