Skip to content

Commit 6ecb177

Browse files
author
Arpit-Sahu
committed
formatted
1 parent 6bb2d45 commit 6ecb177

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/controller/file_manager_controller.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class FileManagerController extends ChangeNotifier {
1212
/// getSorted by returns the current sorting type of the FileManager
1313
SortBy get getSortedBy => _short;
1414
// TODO: [Documentation]
15-
/// setSortedBy is used to set the sorting type.
15+
/// setSortedBy is used to set the sorting type.
1616
set setSortedBy(SortBy sortType) {
1717
_short = sortType;
1818
notifyListeners();

lib/file_manager.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ class _FileManagerState extends State<FileManager> {
215215
@override
216216
void initState() {
217217
super.initState();
218-
/// add the listner to the contoller
218+
219+
/// add the listner to the contoller
219220
widget.controller.addListener(() {
220221
path.value = widget.controller.getCurrentPath;
221222
sort.value = widget.controller.getSortedBy;

0 commit comments

Comments
 (0)