2022年12月21日 星期三

Flutter學習 -poppular組件

 PopupMenuButtonFlutter


使用範例如下:

PopupMenuButton<String>(
onSelected: (String response) {
print('你選擇了:$response');
},
itemBuilder: (BuildContext context) => [
PopupMenuItem<String>(
//value為點選後,會傳給回調的
response
value: '選項1',
//出現在選項中的文字
child: Text('選項1'),
),
PopupMenuItem<String>(
value: '選項2',
child: Text('選項2'),
),
PopupMenuItem<String>(
value: '選項3',
child: Text('選項3'),
),
],
),

沒有留言:

張貼留言