Quick Action in Flutter怎么设置icon?
Flutter开发,为App(https://jimeiapp.zhangbingdev.com)添加了一个Quick Action功能,桌面快捷菜单,但是这个菜单图标怎么配置呢?quickacti
虽然我没用过这个quick_action,不过网上查一下就能看到一些用法(我没试过,你可以试一下)
Here, the icon string is the name of the icon image native resource folder without extension, for example, xcassets on iOS or drawable on Android.
甚至有直接放一个路径的
const ShortcutItem(
id: "2",
action: 'Search Songs Action',
shortLabel: 'Search Songs',
icon: 'assets/icons/search.png',
),
你看看能不能用吧