TagText function
Implementation
Widget TagText(String title,
{Color? color = Colors.pinkAccent, Color? textColor = Colors.white, double fontSize = 11, double radius = 2, EdgeInsets? padding = tagPadding}) {
return title.bodySmall(fontSize: fontSize, color: textColor).padded(padding).roundRect(radius: radius, fillColor: color);
}