0 purchases
custom flutter textfield
Features #
We can use this package for customize our textformfield.
Getting started #
Add the following to your pubspec.yaml file.
dependencies:
custom_flutter_textfield: 0.0.1
copied to clipboard
import 'package:custom_flutter_textfield/custom_flutter_textfield.dart';
copied to clipboard
Usage #
Example code below
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Ecommerce App'),
),
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: [
CustomTextField(
controller: TextEditingController(),
)
],
),
),
);
}
copied to clipboard
Additional information #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.