simple_textfield_tag 0.0.1 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 [...]
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"
)
],
),
)
);
}
}