How do I clear Flutter's image cache?

后端 未结 1 912
悲&欢浪女
悲&欢浪女 2021-01-03 19:27

Flutter has its own internal cache of images. I need to clear that image cache. How do I do that?

相关标签:
1条回答
  • 2021-01-03 19:54

    Found this solution in the Flutter docs

    import 'package:flutter/services.dart';
    
    imageCache.clear();
    
    0 讨论(0)
提交回复
热议问题