1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 17:58:54 +01:00
nc-photos/lib/entity/file_util.dart
2021-04-15 06:57:56 +08:00

11 lines
236 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",
"image/heic",
];