Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Text widget with circular background in flutter

enter image description here

How can I get this type of rounded background in Text widget?

like image 829
Sumit Shukla Avatar asked May 08 '26 11:05

Sumit Shukla


2 Answers

You can achieve it by

      CircleAvatar(
          backgroundColor: Colors.grey,
          child: Center(
            child: Text(
              "B",
              style: TextStyle(color: Colors.black),
            ),
          ),
        )
like image 113
Seddiq Sorush Avatar answered May 10 '26 23:05

Seddiq Sorush


Screenshot:

enter image description here


You can also use ClipOval

ClipOval(
  child: Container(
    color: Colors.grey,
    padding: EdgeInsets.symmetric(horizontal: 30),
    child: Text(
      "B",
      style: TextStyle(color: Colors.black, fontSize: 90),
    ),
  ),
)
like image 35
CopsOnRoad Avatar answered May 10 '26 23:05

CopsOnRoad



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!