【发布时间】:2021-02-16 05:14:05
【问题描述】:
【问题讨论】:
标签: flutter dart flutter-layout flutter-dependencies expand
【问题讨论】:
标签: flutter dart flutter-layout flutter-dependencies expand
如果您指的是三个点,那么 PopupMenuButton 就是要走的路:
Scaffold(
appBar: AppBar(
title: Text('Chat'),
actions: <Widget>[
PopupMenuButton<String>(
itemBuilder: (context) => [
PopupMenuItem(
value: 1,
child: Text("Do something..."),
),
],
onSelected: (value) async => {
_doSomething(),
},
),
],
),
drawer: AppDrawer(),
body: something here...
);
【讨论】: