Baseflow / flutter_cache_manager

Generic cache manager for flutter
https://baseflow.com
MIT License
739 stars 427 forks source link

should export the file_system #365

Open yk3372 opened 2 years ago

yk3372 commented 2 years ago
export 'src/storage/file_system/file_system.dart';
export 'src/storage/file_system/file_system_io.dart';
export 'src/storage/file_system/file_system_web.dart';

The IOFileSystem can't import for below code.

CacheManager(
    Config(
      key,
      stalePeriod: const Duration(days: 7),
      maxNrOfCacheObjects: 20,
      repo: JsonCacheInfoRepository(databaseName: key),
      fileSystem: IOFileSystem(key),
      fileService: HttpFileService(),
    ),
  )
yk3372 commented 2 years ago

@renefloor please fix it, thanks

yk3372 commented 2 years ago

same to https://github.com/Baseflow/flutter_cached_network_image/issues/710

montyr75 commented 2 years ago

In order to access the FileSystem interface to do a custom cache, we have to import this file: import 'package:flutter_cache_manager/src/storage/file_system/file_system.dart'; This is a problem for the linter (info: Don't import implementation files from another package.) Please add either this interface or, even better, your implementation of IOFileSystem to the list of exports in flutter_cache_manager.dart.

Technorocker commented 1 year ago

@montyr75 Hello, I tried adding that import but didnt work for me. Has anyone figured this out yet? I'm trying to use this instead of cached video player plugin but cant figure out what to import to get the IOFileSystem referenced properly.

shen601020 commented 9 months ago

@montyr75您好,我尝试添加该导入,但对我不起作用。有人已经弄清楚了吗?我正在尝试使用它而不是缓存视频播放器插件,但无法弄清楚要导入什么才能正确引用 IOFileSystem。

试试:import 'package:flutter_cache_manager/src/storage/file_system/file_system_io.dart';