Added translations, fixed icons, created menu buttons, refactor screens

This commit is contained in:
2026-03-04 18:00:55 +01:00
parent 5a68dfb3df
commit 014ef1ad26
53 changed files with 1845 additions and 1506 deletions

View File

@@ -10,4 +10,4 @@ export 'src/buttons/primary_button.dart';
export 'src/buttons/secondary_button.dart';
export 'src/buttons/custom_text_button.dart';
export 'src/dropdowns/dropdown.dart';
export 'src/dropdowns/country_prefix_picker.dart';
export 'src/dropdowns/country_prefix_picker.dart';

View File

@@ -20,6 +20,7 @@ enum ThemeCode {
textTertiary,
buttonPrimary,
buttonSecondary,
legacyPrimary,
}
abstract class ThemePort {

View File

@@ -13,6 +13,7 @@ class ThemeSfAdapter extends ThemePort {
ThemeCode.textTertiary: Color(0xFFE0E0E0),
ThemeCode.buttonPrimary: Color(0xFF329e95),
ThemeCode.buttonSecondary: Color(0xFF4B4B4B),
ThemeCode.legacyPrimary: Color(0xFF588EA5),
};
@override