added string for every screen and removed from app strings

This commit is contained in:
amirrezaghabeli
2025-09-01 17:50:51 +03:30
parent bc69fff0ca
commit cab78c8f4d
45 changed files with 358 additions and 298 deletions
+13
View File
@@ -0,0 +1,13 @@
class CommonStrings {
CommonStrings._();
// Truly shared strings across multiple features
static const String noData = 'No data';
static const String confirm = 'Confirm';
static const String submit = 'Submit';
static const String cancel = 'Cancel';
static const String loading = 'Loading...';
static const String error = 'Error';
static const String success = 'Success';
static const String retry = 'Retry';
}