implemented favourites page

added navigation bar
renamed "like" to "favourite"
made cards list into separate widget
This commit is contained in:
2024-12-17 12:10:42 +04:00
parent 04120c4847
commit 1a863ee7f7
23 changed files with 639 additions and 245 deletions

View File

@@ -142,6 +142,24 @@ abstract class AppLocale {
/// In en, this message translates to:
/// **'Language'**
String get settingsLanguage;
/// No description provided for @navigationHome.
///
/// In en, this message translates to:
/// **'Home'**
String get navigationHome;
/// No description provided for @navigationFavourites.
///
/// In en, this message translates to:
/// **'Favourites'**
String get navigationFavourites;
/// No description provided for @navigationSettings.
///
/// In en, this message translates to:
/// **'Settings'**
String get navigationSettings;
}
class _AppLocaleDelegate extends LocalizationsDelegate<AppLocale> {

View File

@@ -29,4 +29,13 @@ class AppLocaleEn extends AppLocale {
@override
String get settingsLanguage => 'Language';
@override
String get navigationHome => 'Home';
@override
String get navigationFavourites => 'Favourites';
@override
String get navigationSettings => 'Settings';
}

View File

@@ -29,4 +29,13 @@ class AppLocaleRu extends AppLocale {
@override
String get settingsLanguage => 'Язык';
@override
String get navigationHome => 'Главная';
@override
String get navigationFavourites => 'Избранное';
@override
String get navigationSettings => 'Настройки';
}