UI bug fix

This commit is contained in:
ashilkn 2022-11-03 11:31:57 +05:30
parent 0d1311ae57
commit 2e11f9431d

View file

@ -207,7 +207,7 @@ class _FileInfoWidgetState extends State<FileInfoWidget> {
],
),
)
: const SizedBox.shrink(),
: null,
SizedBox(
height: 62,
child: ListTile(
@ -243,12 +243,14 @@ class _FileInfoWidgetState extends State<FileInfoWidget> {
),
),
)
: const SizedBox.shrink(),
_isImage
? RawExifListTileWidget(_exif, widget.file)
: const SizedBox.shrink(),
: null,
_isImage ? RawExifListTileWidget(_exif, widget.file) : null,
];
listTiles.removeWhere(
(element) => element == null,
);
return SafeArea(
top: false,
child: Padding(