easier_flutter 0.0.2 easier_flutter: ^0.0.2 copied to clipboard
A project that targets to make experiencing Flutter better and easier.
AutoFocusTextField #
A Flutter package that provides a customizable TextField
widget with automatic background color change based on focus state. It is for now, I am going to improve the scale of this package.
Features #
- Changes background color when the
TextField
is focused or unfocused. - Fully customizable with options for focus and unfocused background colors.
- Easy to use and integrate into your Flutter project.
Usage #
AutoFocusTextField(
controller: myController,
focusNode: myFocusNode,
focusedBackgroundColor: Colors.blue,
noFocusedBackgroundColor: Colors.white,
);