Files
tm_app/lib/views/board/strings/board_strings.dart
T
amirrezaghabeli abf1cc3f7d Add board service and repository, update routes and assets
- 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.
2025-11-11 12:58:05 +03:30

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';
}