Another exception was thrown: Invalid argument(s): No host specified in URI file:///

174 Views Asked by At

I displayed network image using drive url link and I got this error.But after 5 sec , display image .But before display image,display error message in screen.How can I solve that?

ValueListenableBuilder<String>(
  valueListenable:_pageManager.currentSongTitleNotifier,
  builder: (_, imagelink, __) {
    print(imagelink);
    return imagelink == null ?
      Container() 
      :Container(
      child:Image.network(imagelink),
    );
  }
),

0

There are 0 best solutions below