panel property
latefinal
ChatButtons displayed in the more panel.
Implementation
late final RxList<ChatButton> panel = RxList([
if (PlatformUtils.isMobile && !PlatformUtils.isWeb) ...[
TakePhotoButton(pickImageFromCamera),
if (PlatformUtils.isAndroid) TakeVideoButton(pickVideoFromCamera),
GalleryButton(pickMedia),
FileButton(pickFile),
] else ...[
if (PlatformUtils.isMobile) GalleryButton(pickPhotoOrVideo),
AttachmentButton(pickFile),
],
]);