Added option to show folders always on top in files

This commit is contained in:
2023-06-08 20:55:57 +02:00
parent 213c815eee
commit 2c10b02e53
7 changed files with 61 additions and 1 deletions

View File

@ -0,0 +1,13 @@
import 'package:json_annotation/json_annotation.dart';
part 'fileSettings.g.dart';
@JsonSerializable()
class FileSettings {
bool sortFoldersToTop;
FileSettings({required this.sortFoldersToTop});
factory FileSettings.fromJson(Map<String, dynamic> json) => _$FileSettingsFromJson(json);
Map<String, dynamic> toJson() => _$FileSettingsToJson(this);
}