xxf_desktop 0.0.2 copy "xxf_desktop: ^0.0.2" to clipboard
xxf_desktop: ^0.0.2 copied to clipboard

桌面端

桌面端框架

Features #

List what your package can do. Maybe include images, gifs, or videos.

Getting started #

List prerequisites and provide or point to information on how to start using the package.

Usage #

Include short and useful examples for package users. Add longer examples to /example folder.

ContextualMenuArea(
child: Container(
padding: EdgeInsets.all(20),
color: Colors.grey,
child: Text("ContextualMenuArea"),
),
builder: (context) {
return [
MenuItem.submenu(
label: "复制",
submenu: Menu(
items: [
MenuItem.checkbox(label: "复制全部", checked: false),
MenuItem.checkbox(label: "复制当前", checked: true),
],
),
),
MenuItem.separator(),
MenuItem(label: "粘贴"),
];
},
),

Additional information #

Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.