feat: update home ui

This commit is contained in:
Efril
2026-06-23 21:27:27 +07:00
parent e236d811ce
commit 83f4e065ed
34 changed files with 2128 additions and 1597 deletions
+102
View File
@@ -1378,6 +1378,108 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Total Cost'**
String get total_cost;
/// No description provided for @warning_title.
///
/// In en, this message translates to:
/// **'Warnings'**
String get warning_title;
/// No description provided for @warning_desc.
///
/// In en, this message translates to:
/// **'Activities deviating from standards — needs review.'**
String get warning_desc;
/// No description provided for @no_warning.
///
/// In en, this message translates to:
/// **'No warnings'**
String get no_warning;
/// No description provided for @no_warning_desc.
///
/// In en, this message translates to:
/// **'All activities are running normally.'**
String get no_warning_desc;
/// No description provided for @severity_high.
///
/// In en, this message translates to:
/// **'High'**
String get severity_high;
/// No description provided for @severity_medium.
///
/// In en, this message translates to:
/// **'Medium'**
String get severity_medium;
/// No description provided for @compared_to_previous_period.
///
/// In en, this message translates to:
/// **'Compared to previous period'**
String get compared_to_previous_period;
/// No description provided for @summary_today.
///
/// In en, this message translates to:
/// **'Today\'s Summary'**
String get summary_today;
/// No description provided for @summary_mtd.
///
/// In en, this message translates to:
/// **'MTD Summary'**
String get summary_mtd;
/// No description provided for @total_sales_label.
///
/// In en, this message translates to:
/// **'Total sales'**
String get total_sales_label;
/// No description provided for @total_raw_material.
///
/// In en, this message translates to:
/// **'Total raw material cost'**
String get total_raw_material;
/// No description provided for @net_profit_label.
///
/// In en, this message translates to:
/// **'Net profit'**
String get net_profit_label;
/// No description provided for @items_sold.
///
/// In en, this message translates to:
/// **'Items Sold'**
String get items_sold;
/// No description provided for @low_stock_warning.
///
/// In en, this message translates to:
/// **'Low Stock'**
String get low_stock_warning;
/// No description provided for @active_products.
///
/// In en, this message translates to:
/// **'Active Products'**
String get active_products;
/// No description provided for @today_condition.
///
/// In en, this message translates to:
/// **'Today\'s Condition'**
String get today_condition;
/// No description provided for @portion_sold.
///
/// In en, this message translates to:
/// **'{count} portions sold'**
String portion_sold(int count);
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {