mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
11 lines
220 B
Dart
11 lines
220 B
Dart
|
import 'package:nc_photos/entity/file.dart';
|
||
|
|
||
|
bool isSupportedFormat(File file) =>
|
||
|
_supportedFormatMimes.contains(file.contentType);
|
||
|
|
||
|
const _supportedFormatMimes = [
|
||
|
"image/jpeg",
|
||
|
"image/png",
|
||
|
"image/webp",
|
||
|
];
|