simple_textfield_tag 0.0.1 copy "simple_textfield_tag: ^0.0.1" to clipboard
simple_textfield_tag: ^0.0.1 copied to clipboard

SimpleTextFieldTag is a Flutter package that provides an easy-to-use widget for adding, displaying, and managing tags in the form of chips. It offers customizable styling, dynamic tag management, and [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:simple_textfield_tag/simple_textfield_tag.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home:Scaffold(
        appBar: AppBar(title: const Text("Simple TextField tag"),),
        body: const Column(
          children: [
            SimpleTextFieldTag(
              labelText: "Enter Tag"
            )
          ],
        ),
      )
    );
  }
}
8
likes
140
points
18
downloads

Publisher

unverified uploader

Weekly Downloads

SimpleTextFieldTag is a Flutter package that provides an easy-to-use widget for adding, displaying, and managing tags in the form of chips. It offers customizable styling, dynamic tag management, and flexible callback functions, making it ideal for applications where users need to input multiple keywords, skills, or tags. The widget also supports custom controllers and various layout configurations for a responsive user experience

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on simple_textfield_tag