From 947570755edbb27d9aab939525b11659b246f896 Mon Sep 17 00:00:00 2001 From: Orangerot Date: Wed, 8 Jan 2025 03:14:51 +0100 Subject: feat: sort by title name in level selection --- lib/level_selection.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/level_selection.dart b/lib/level_selection.dart index 0c1a0fe..44cf7ea 100644 --- a/lib/level_selection.dart +++ b/lib/level_selection.dart @@ -135,7 +135,7 @@ class _LevelSelectionState extends State { final directory = Directory(directoryPath); try { // List all files and folders in the directory - return directory + List simfiles = directory .listSync() .where((entity) => FileSystemEntity.isDirectorySync(entity.path)) .map((entity) { @@ -143,6 +143,9 @@ class _LevelSelectionState extends State { simfile.load(); return simfile; }).toList(); + simfiles.sort((a,b) => a.tags['TITLE']!.compareTo(b.tags['TITLE']!)); + + return simfiles; } catch (e) { print("Error reading directory: $e"); return []; -- cgit v1.2.3