opt.: migrate fl_lib

This commit is contained in:
lollipopkit
2024-05-14 22:29:37 +08:00
parent 248430e5b0
commit 04dfede535
136 changed files with 686 additions and 3896 deletions

View File

@@ -1,4 +1,4 @@
import 'package:toolbox/core/utils/misc.dart';
import 'package:fl_lib/fl_lib.dart';
class AbsolutePath {
String _path;
@@ -24,7 +24,7 @@ class AbsolutePath {
_path = newPath;
return;
}
_path = pathJoin(_path, newPath);
_path = _path.joinPath(newPath, seperator: '/');
}
bool undo() {