Bilbo Baggins
Bilbo Baggins

Reputation: 175

What is this icon name?

I want to use this icon on my Flutter app, unfortunately I do not know the name. Someone could tell me what's the name?

enter image description here

Upvotes: 0

Views: 231

Answers (1)

Gwhyyy
Gwhyyy

Reputation: 9166

the three points icon is:

Icon(Icons.more_horiz)

and you can reach the same shape over it like this:

Container(
 padding: EdgeInsets.all(5),
 decoration: BoxDecoration(
  borderRadius: BorderRadius.circular(5),
  border: Border.all(
   color: Colors.black,
   width: 1, 
  ),
 ),
 child: Icon(Icons.more_horiz),
 ),

this will result in something like this, I didn't compare them, so changing just the padding and border, and border radius values will get you there

Upvotes: 2

Related Questions