custom_edittext 0.0.4 custom_edittext: ^0.0.4 copied to clipboard
A new Flutter package with a highly customizable edittext, can able to set margins without wrapping it in a container and more.
This is a custom editext have features of edittext.
Features #
With the help of this package we can able to add margins to edittext and other normal features of edittext.
Getting started #
Just add 'custom_edittext: ^0.0.2' this flutter package into your project.
Usage #
TODO: CustomEdittext(marginLeft:10). Add longer examples
to /example
folder.
CustomEditText(
marginLeft: 10,
marginRight: 10,
marginTop: 10,
cornerRadius: 10,
hintText: "please enter the value",
borderColor: Colors.red,
borderWidth: 2,
isBackgroundFilled: false,
textAlign: TextAlign.left,
textStyle: GoogleFonts.lato(fontSize: 18, fontStyle: FontStyle.italic),
textInputType: TextInputType.name,
backgroundColor: Colors.blue,
textEditController: textEditingController,
maxLines: null,
);
Additional information #
TODO: Raise issues in my github.