showPopupItem method
dynamic
showPopupItem(
- dynamic item,
- dynamic typeOwner,
- dynamic name,
- dynamic value,
- dynamic id,
- dynamic backcolor,
- dynamic context,
- dynamic needSearch,
Implementation
showPopupItem(
item, typeOwner, name, value, id, backcolor, context, needSearch) async {
myLogAll('showPopupItem');
if (overlayEntry != null) {
return;
}
List actions = [];
actions.add({
gType: gIcon,
gValue: 0xef49,
gLabel: gConfirm,
gAction: gLocalAction,
gItem: item,
gTypeOwner: typeOwner,
gName: name,
gId: id,
});
Widget w = await getItemSubWidget(
item, typeOwner, name, context, id, backcolor, actions);
//}
showPopup(context, w, null, actions, needSearch);
//}
}