-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/collection-frb-v2' into feature/mod-mangement
- Loading branch information
Showing
32 changed files
with
972 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
app/lib/src/rust/api/backend_exclusive/storage/account_storage.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 10 additions & 2 deletions
12
.../backend_exclusive/storage/ui_layout.dart → ...nd_exclusive/storage/global_settings.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
// This file is automatically generated, so please do not edit it. | ||
// Generated by `flutter_rust_bridge`@ 2.0.0-dev.23. | ||
// Generated by `flutter_rust_bridge`@ 2.0.0-dev.25. | ||
|
||
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import | ||
|
||
import '../../../frb_generated.dart'; | ||
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart'; | ||
import 'package:freezed_annotation/freezed_annotation.dart' hide protected; | ||
part 'ui_layout.freezed.dart'; | ||
part 'global_settings.freezed.dart'; | ||
|
||
enum UILayoutKey { | ||
completedSetup, | ||
showsRecommendation, | ||
sidebarPreivew, | ||
} | ||
|
||
@freezed | ||
sealed class UILayoutValue with _$UILayoutValue { | ||
const factory UILayoutValue.completedSetup( | ||
bool field0, | ||
) = UILayoutValue_CompletedSetup; | ||
const factory UILayoutValue.showsRecommendation( | ||
bool field0, | ||
) = UILayoutValue_ShowsRecommendation; | ||
const factory UILayoutValue.sidebarPreivew( | ||
bool field0, | ||
) = UILayoutValue_SidebarPreivew; | ||
} |
Oops, something went wrong.