Does the material library of Flutter have the 3 dots icons
Icon(Icons.three_dots_overflow),
Yes, the more_horiz:
Icon(Icons.more_horiz);
and the more_vert:
Icon(Icons.more_vert);
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),
),
],
),
);
}
Icon(
Icons.more_horiz_outlined,
size: 25,
color: Color(0xFF5F6368),
),
Icon(
Icons.more_vert_outlined,
size: 25,
color: Color(0xFF5F6368),
),
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With