mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-26 18:39:52 +00:00
16 lines
425 B
Dart
16 lines
425 B
Dart
![]() |
/// List of default file extensions used for images.
|
||
|
///
|
||
|
/// This is used to make sure that only images that are allowed are picked/uploaded. The extensions
|
||
|
/// should be supported by Flutter, to avoid causing issues.
|
||
|
///
|
||
|
/// See [Image-class documentation](https://api.flutter.dev/flutter/widgets/Image-class.html)
|
||
|
///
|
||
|
const List<String> defaultImageExtensions = [
|
||
|
'jpg',
|
||
|
'png',
|
||
|
'jpeg',
|
||
|
'gif',
|
||
|
'webp',
|
||
|
'bmp',
|
||
|
];
|