mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
11 lines
236 B
Dart
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",
|
|
];
|