final improvements
added internet permission in manifest added unique app bar titles for each section fixed card layout fixed card details page layout added appbar button for toggling dark mode
This commit is contained in:
@@ -107,6 +107,12 @@ abstract class AppLocale {
|
||||
/// **'Cryptocurrency info'**
|
||||
String get detailsPageAppBarTitle;
|
||||
|
||||
/// No description provided for @favouritesPageAppBarTitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Favourites'**
|
||||
String get favouritesPageAppBarTitle;
|
||||
|
||||
/// No description provided for @settingsPageAppBarTitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -12,6 +12,9 @@ class AppLocaleEn extends AppLocale {
|
||||
@override
|
||||
String get detailsPageAppBarTitle => 'Cryptocurrency info';
|
||||
|
||||
@override
|
||||
String get favouritesPageAppBarTitle => 'Favourites';
|
||||
|
||||
@override
|
||||
String get settingsPageAppBarTitle => 'Settings';
|
||||
|
||||
|
||||
@@ -12,6 +12,9 @@ class AppLocaleRu extends AppLocale {
|
||||
@override
|
||||
String get detailsPageAppBarTitle => 'Сведения о валюте';
|
||||
|
||||
@override
|
||||
String get favouritesPageAppBarTitle => 'Избранное';
|
||||
|
||||
@override
|
||||
String get settingsPageAppBarTitle => 'Настройки';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user