feat:android support listItem's actions

This commit is contained in:
pengfei.zhou
2021-04-25 15:47:59 +08:00
committed by osborn
parent e18b7e781e
commit 658f0ed3b3
2 changed files with 43 additions and 1 deletions

View File

@@ -84,12 +84,14 @@ class ListVM extends ViewModel<ListModel, ListVH> {
actions: [
{
title: "First",
backgroundColor: Color.RED,
callback: () => {
modal(context).alert("First action")
}
},
{
title: "Second",
backgroundColor: Color.BLUE,
callback: () => {
modal(context).alert("Second action")
}