flutter_cache_manager icon indicating copy to clipboard operation
flutter_cache_manager copied to clipboard

should export the file_system

Open yk3372 opened this issue 3 years ago • 5 comments

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 avatar Mar 17 '22 10:03 yk3372

@renefloor please fix it, thanks

yk3372 avatar Mar 17 '22 10:03 yk3372

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

yk3372 avatar Mar 18 '22 03:03 yk3372

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.

montyr75 avatar Jun 09 '22 15:06 montyr75

@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.

Technorocker avatar Aug 05 '22 21:08 Technorocker

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

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

shen601020 avatar Sep 25 '23 03:09 shen601020