abf1cc3f7d
- Introduced BoardService and BoardRepository for managing board-related data. - Updated app routes to reflect the new board screen structure. - Added new board-related assets to the asset manager. - Refactored BoardScreen navigation to utilize the new provider structure.
15 lines
542 B
Dart
15 lines
542 B
Dart
class BoardStrings {
|
|
BoardStrings._();
|
|
|
|
static const String boardTitle = 'My Board';
|
|
static const String toDo = 'To Do';
|
|
static const String inProgress = 'In Progress';
|
|
static const String done = 'Done';
|
|
static const String emptyListText = 'No tasks found';
|
|
static const String deadlineLabel = 'Deadline';
|
|
static const String readyLabel = 'Ready';
|
|
static const String incompleteLabel = 'Incomplete';
|
|
static String taskMovedMessage(String oldStatus, String newStatus) =>
|
|
'Task moved from $oldStatus to $newStatus';
|
|
}
|