Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

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

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

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

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading