WIP: feat(ui): Migrate to new UI implementation

This commit is contained in:
2026-06-22 06:47:16 +04:00
parent 873aa8d7b5
commit bb4334f68d
109 changed files with 13499 additions and 1257 deletions
+6 -6
View File
@@ -1,19 +1,19 @@
# Linting And Test Flow
MoonWell Launcher supports the latest stable Flutter SDK only. Do not use FVM
for this project.
MoonWell Launcher tracks the latest stable Flutter SDK through FVM. Use `fvm`
for every Dart and Flutter command.
## Required Checks
Run these commands before committing:
```powershell
dart format --set-exit-if-changed .
flutter analyze
flutter test
fvm dart format --set-exit-if-changed .
fvm flutter analyze
fvm flutter test
```
Use `dart format .` to apply formatting fixes when the format check fails.
Use `fvm dart format .` to apply formatting fixes when the format check fails.
## Lefthook