Web图像选择器不起作用,可用的软件包已过时

时间:2020-01-17 19:36:35

标签: flutter dart

我找不到用于Web的任何图像选择器,我尝试了pub.dev上的许多软件包,但没有用 这是我尝试但无法使用的一些方法。请提供任何解决方案

  image_picker: ^0.6.3+1

  flutter_web_image_picker: ^0.0.2


  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(image?.semanticLabel ?? ""),
      ),
      floatingActionButton: FloatingActionButton(
        child: Icon(Icons.open_in_browser),
        onPressed: () async {
          final _image = await FlutterWebImagePicker.pickImage();
          setState(() {
            image = _image;
          });
        },
      ),
      body: Center(child: image != null ? image : Text('No data...')),
    );
  }

0 个答案:

没有答案