textfield_plus 0.3.1
textfield_plus: ^0.3.1 copied to clipboard
A highly customizable and easy-to-use text field widget for Flutter.
import 'package:flutter/material.dart';
import 'textfield_plus.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Custom Text Field Example',
home: Scaffold(
appBar: AppBar(title: const Text("Custom Text Field Example")),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: TextfieldPlus(
title: "Full Name",
controller: TextEditingController(),
keyboardType: TextInputType.name,
),
),
),
);
}
}