FloxyStyle is Utility with Lightweight performance and many feature coming soon in this package hopefully you can give me suggestion in issue github
- Button
- Route / Navigator
- Sizing
- Validator
DangerButton(
pressed: () {},
widget: Text("Test Button"),
// for example you need borderRadius just add
typeBorder: "bd-1"
)
To push your navigator screen just use
FN.moveTo(context, ScreenName())
To push your navigator with namedRoute screen just use
FN.moveToWithRoutes(context, "/exampleroute")
To Close your screen just use
FN.closePage(context)
FSZ.fullW(context)
// Min Length Validator
FV.minLength(String value, int minLength)
// if valid return true
// Max Length Validator
FV.maxLength(String value, int maxLength)
// if valid return true
// Email Validator
FV.email(String value)
// if valid return true