raiseHandIcon method
Implementation
Widget raiseHandIcon() {
print('appmode:$appMode');
return Obx(() => Expanded(
child: InkWell(
onTap: () {
raiseHandCallbacks();
},
child: Center(
child: role
? Icon(
Icons.notifications_on_outlined,
color: enxController.isNotification
? CustomColors.themeColor
: Colors.white,
)
: Image.asset(
floorAction == 0
? "assets/image/raise_hand.png"
: floorAction == 1
? "assets/image/raise_hand_cancel.png"
: "assets/image/raise_hand_finish.png",
package: 'enx_uikit_flutter',
color: Colors.white,
),
))));
}