Fix: Show image edit option for livePhoto

This commit is contained in:
Neeraj Gupta 2021-08-06 16:17:57 +05:30
parent 17735685b4
commit 32edabc27c

View file

@ -55,7 +55,9 @@ class FadingBottomBarState extends State<FadingBottomBar> {
),
),
);
if (widget.file.fileType == FileType.image) {
if (widget.file.fileType == FileType.image ||
widget.file.fileType == FileType.livePhoto
) {
children.add(
Padding(
padding: const EdgeInsets.only(top: 12, bottom: 12),