如何在运行时检查资产是否存在

时间:2020-04-04 08:22:44

标签: flutter

我现在多次询问这个问题,但是我想检查在运行时是否存在资产而没有异步。那有可能吗?

感谢答案

1 个答案:

答案 0 :(得分:1)

如果在stateFulWidget的init()方法中访问文件时遇到错误(应该得到错误),请这样做

init(){ //this should be non aynchronous and is
 yourAsyncFileAccessMethod();
}

yourAsyncFileAccessMethod() async { //this can be aynchronous
 await //access and process file here
}