sm_input_field 1.0.0 sm_input_field: ^1.0.0 copied to clipboard
a package to create input fields in a simple manner
This package gives a simple api to create relatively simple and beautiful text fields
Features #
Gives you the ability to create an input field
Getting started #
only create a flutter project and import the package
Usage #
import 'package:sm_input_field/sm_input_field.dart';
class Field extends StatelessWidget {
const Field({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return InputField.fromFieldInfo(FieldInfo());
}
}
Additional information #
no info available :)