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

A new Flutter package to generate tags from the list provided. You customize the tags with lots of options provided. More updates coming soon !

Features #

Here I have provided a simple solution to the community for tags. You can just put this in your project and just with a list you can get beautiful tags.

Getting started #

Usage #

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

class HomeScreen extends StatefulWidget {
  const HomeScreen({super.key});

  @override
  State<HomeScreen> createState() => _HomeScreenState();
}

List<String> tags = [
  "Overview",
  "Courses & Fees",
  "Gallery",
  "Cutoff",
  "Placement",
  "Faculty",
  "News & Articles",
  "Reviews",
  "Comments"
];

class _HomeScreenState extends State<HomeScreen> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: SafeArea(
        child: SingleChildScrollView(
            child: Column(
          children: [
            Text('tags'),
            Container(
                child: Tags(
              tagList: tags,
              activeTagBackground: Colors.indigo,
              tagBackground: Colors.grey.shade200,
              activeTagTextColor: Colors.white,
              tagTextColor: Colors.black,
              tagBorderRadius: 20,
              spacingBetweenTags: 8,
            )),
          ],
        )),
      ),
    );
  }
}

Additional information #

More updates coming soon !! Mail me : apurbakhanra09@gmail.com Feel free to suggest any changes..

1
likes
0
points
16
downloads

Publisher

unverified uploader

Weekly Downloads

A new Flutter package to generate tags from the list provided. You customize the tags with lots of options provided. More updates coming soon !

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on awesometags