auto-claude: subtask-2-2 - Create NotesDialog component for displaying delivery notes
- Add reusable NotesDialog component that extracts and displays notes from delivery orders - Add static show() method for convenient dialog display with empty notes handling - Add localization strings for notes dialog (EN/FR): notesTitle, noNotesMessage, close - Follow existing dialog pattern from NavigationTermsAndConditionsDialog Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -559,6 +559,24 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Upload'**
|
||||
String get upload;
|
||||
|
||||
/// No description provided for @notesTitle.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Notes for {name}'**
|
||||
String notesTitle(String name);
|
||||
|
||||
/// No description provided for @noNotesMessage.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'No notes attached to this delivery'**
|
||||
String get noNotesMessage;
|
||||
|
||||
/// No description provided for @close.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Close'**
|
||||
String get close;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
Reference in New Issue
Block a user