Files
tm_app/lib/views/board/strings/board_strings.dart
T

11 lines
377 B
Dart

class BoardStrings {
BoardStrings._();
static const String boardTitle = 'My Board';
static const String emptyListText = 'No tasks found';
static const String deadlineLabel = 'Deadline';
static const String moveFailed = 'Could not move card';
static String cardMovedMessage(String fromColumn, String toColumn) =>
'Card moved from $fromColumn to $toColumn';
}