textfield_plus 0.3.1 copy "textfield_plus: ^0.3.1" to clipboard
textfield_plus: ^0.3.1 copied to clipboard

A highly customizable and easy-to-use text field widget for Flutter.

example/lib/main.dart

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,
          ),
        ),
      ),
    );
  }
}
2
likes
160
points
2
downloads

Publisher

verified publishersanalparakkal.blogspot.com

Weekly Downloads

A highly customizable and easy-to-use text field widget for Flutter.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on textfield_plus