Flutter Icons 3 dots Flutter Icons 3 dots flutter flutter

Flutter Icons 3 dots


Yes, the more_horiz:

    Icon(Icons.more_horiz);

enter image description here

and the more_vert:

    Icon(Icons.more_vert);

enter image description here


Android

enter image description here

iOS

enter image description here


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

import 'dart:io';// ...@overrideWidget build(BuildContext context) {  return Scaffold(    appBar: AppBar(      title: Text('AppBar'),      actions: [        IconButton(          onPressed: () {},          icon: Icon(Platform.isAndroid ? Icons.more_vert : Icons.more_horiz),        ),      ],    ),  );}