无法在闪动的启动画面/第一个画面中渲染图像(仅适用于iOS)

时间:2019-03-22 12:35:13

标签: flutter flutter-layout

我正在向“启动画面”屏幕添加背景图像,但未渲染图像。有时它加载有时没有加载。如果我在第二个屏幕中加载,它将正确加载。问题出在iOS中,而不是Android中。 这是示例代码:

filePath = 'http://localhost:3028/controller/addFile';
   addFile(file) : void{    
    this.params = new HttpParams();
    file = this.directory + '\\' + file;
    this.params = this.params.append('file', file);
    this.http.get(this.filePath, { params: this.params }).subscribe((data: any) => {
});
}

1 个答案:

答案 0 :(得分:0)

您是否已将图像路径包括在pubspec.yaml中?

assets:
  - images/image_name.png