PopupMenuButton参数
const PopupMenuButton({
Key key,
@required this.itemBuilder,//渲染下拉菜单函数,返回数组
this.initialValue,//默认选中
this.onSelected,//选择改变触发
this.onCanceled,
this.tooltip,//提示
this.elevation,//阴影
this.padding = const EdgeInsets.all(8.0),
this.child,
this.icon,
this.offset = Offset.zero,
this.enabled = true,
this.shape,
this.color,
this.captureInheritedThemes = true,
})
child: PopupMenuButton(
onSelected: (value){
print(value);
},
itemBuilder: (BuildContext context) => [
PopupMenuItem(
value: 'home',
child: Text('Home'),
),
PopupMenuItem(
value: 'product',
child: Text('product'),
)
],
),
文章版权声明:除非注明,否则均为
譬如朝露_策温技术开发工作室博客原创文章,转载或复制请以超链接形式并注明出处。
发表评论
侧栏公告
寄语
譬如朝露博客是一个分享前端知识的网站,联系方式11523518。
热评文章
标签列表
热门文章
友情链接