mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 04:49:21 +00:00
Fix deprecated methods call
This commit is contained in:
parent
ecc4f5bffe
commit
4fd8c4d613
@ -123,7 +123,7 @@ Future<BytesFile> showPickFileDialog({
|
||||
// Pick an image
|
||||
case _FileChoices.PICK_IMAGE:
|
||||
case _FileChoices.TAKE_PICTURE:
|
||||
final image = await ImagePicker().getImage(
|
||||
final image = await ImagePicker().pickImage(
|
||||
source: choice == _FileChoices.PICK_IMAGE
|
||||
? ImageSource.gallery
|
||||
: ImageSource.camera,
|
||||
@ -142,7 +142,7 @@ Future<BytesFile> showPickFileDialog({
|
||||
// Pick an video
|
||||
case _FileChoices.PICK_VIDEO:
|
||||
case _FileChoices.TAKE_VIDEO:
|
||||
final image = await ImagePicker().getVideo(
|
||||
final image = await ImagePicker().pickVideo(
|
||||
source: choice == _FileChoices.PICK_VIDEO
|
||||
? ImageSource.gallery
|
||||
: ImageSource.camera,
|
||||
|
Loading…
Reference in New Issue
Block a user