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),
if (PlatformUtils.isAndroid)
FileButton(pickFile)
else
AttachmentButton(pickFile),
] else ...[
GalleryButton(pickPhotoOrVideo),
AttachmentButton(pickFile),
],
]);