Flutter Icons 3 dots

fluttermaterial-design

Does the material library of Flutter have the 3 dots icons

Icon(Icons.three_dots_overflow),

er

Best Answer

Yes, the more_horiz:

    Icon(Icons.more_horiz);

enter image description here

and the more_vert:

    Icon(Icons.more_vert);

enter image description here