'Flutter Icons 3 dots
Solution 1:[1]
Solution 2:[2]
Android
iOS
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),
),
],
),
);
}
Solution 3:[3]
Icon(
Icons.more_horiz_outlined,
size: 25,
color: Color(0xFF5F6368),
),
Icon(
Icons.more_vert_outlined,
size: 25,
color: Color(0xFF5F6368),
),
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Try |
Solution 2 | CopsOnRoad |
Solution 3 | Anandh Krishnan |