Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Icons 3 dots

Does the material library of Flutter have the 3 dots icons

Icon(Icons.three_dots_overflow),

er

like image 634
TSR Avatar asked Oct 01 '19 15:10

TSR


3 Answers

Yes, the more_horiz:

    Icon(Icons.more_horiz);

enter image description here

and the more_vert:

    Icon(Icons.more_vert);

enter image description here

like image 88
LOfG Avatar answered Nov 11 '22 02:11

LOfG


Android

enter image description here

iOS

enter image description here


To show the menu icon (based on the platform):

import 'dart:io';
// ...

@override
Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: Text('AppBar'),
      actions: [
        IconButton(
          onPressed: () {},
          icon: Icon(Platform.isAndroid ? Icons.more_vert : Icons.more_horiz),
        ),
      ],
    ),
  );
}
like image 24
CopsOnRoad Avatar answered Nov 11 '22 01:11

CopsOnRoad


Icon(
   Icons.more_horiz_outlined,
   size: 25,
   color: Color(0xFF5F6368),
  ),

enter image description here

Icon(
    Icons.more_vert_outlined,
    size: 25,
    color: Color(0xFF5F6368),
   ),

enter image description here

like image 1
Anandh Krishnan Avatar answered Nov 11 '22 01:11

Anandh Krishnan