How to solve the image picker crash app error?

前端 未结 4 1724
走了就别回头了
走了就别回头了 2021-01-14 12:41

I have a app crash when i\'m picking a image. i\'m using image_picker:0.5.0+7 with any ImageSource it\'s crash the app.

File _fileState;

Future getIm         


        
4条回答
  •  情话喂你
    2021-01-14 13:10

    It seems image_picker documentation has been updated.

    You would have to use retrieveLostData when the app restarts (migrate to AndroidX else you may get a force close error)

    Future retrieveLostData() async {
        final LostDataResponse response = await ImagePicker.retrieveLostData();
        if (response == null) {
            return;
        }
        if (response.file != null) {
            setState(() {
                if (response.type == RetrieveType.video) {
                    _handleVideo(response.file);
                } else {
                    _handleImage(response.file);
                }
            });
        } else {
            _handleError(response.exception);
        }
    }
    

提交回复
热议问题