如何解决Flutter中发生异常的问题?

时间:2020-07-02 06:13:59

标签: flutter dart

当我运行此代码时:

     body: Center(
        child: Image(
          image: NetworkImage(
              'https://images.pexels.com/photos/4431905/pexels-photo-4431905.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500'),
        ),
        // child: Text(

应用未调试其提示

发生了异常。 _AssertionError('package:flutter / src / painting / image_stream.dart':失败的断言:238行pos 12:'_completer == null':不正确。)

  void setCompleter(ImageStreamCompleter value) {
    assert(_completer == null);
    _completer = value;
    if (_listeners != null) {
      final List<ImageStreamListener> initialListeners = _listeners;
      _listeners = null;
      initialListeners.forEach(_completer.addListener);
    }
  }

1 个答案:

答案 0 :(得分:0)

您可以尝试其他链接吗?可能是完成者最终没有得到图像。