Move the folder navigation drawer trigger to the bottom by default, matching the issue request. Add a user preferences DB table (schema v34) and a settings screen so users can switch back to the top hamburger menu. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
7 lines
164 B
Dart
7 lines
164 B
Dart
enum MenuPosition { bottom, top }
|
|
|
|
class UserPreferences {
|
|
const UserPreferences({this.menuPosition = MenuPosition.bottom});
|
|
final MenuPosition menuPosition;
|
|
}
|