showFullWindowDialog method
dynamic
showFullWindowDialog()
Implementation
showFullWindowDialog() {
var chatItem = selectedChatList.first;
clearAllChatSelection();
// Get.bottomSheet(
// EditMessageScreen(chatItem: chatItem, chatController: this),
// ignoreSafeArea: false,
// enableDrag: false,
// isScrollControlled: true, // Important for full screen
// );
DialogUtils.bottomSheet(
EditMessageScreen(chatItem: chatItem, chatController: this),
ignoreSafeArea: true,
isScrollControlled: true,
enableDrag: false,
);
}