diff --git a/lib/screens/garage_screen.dart b/lib/screens/garage_screen.dart index 2f4a86a..b968353 100644 --- a/lib/screens/garage_screen.dart +++ b/lib/screens/garage_screen.dart @@ -1207,7 +1207,7 @@ class _ReportCarDialogState extends State<_ReportCarDialog> { 'Wrong model name', 'Wrong series or year', 'Duplicate catalog entry', - 'Inappropriate or invalid image', + 'Invalid image', 'Other', ]; @@ -1241,6 +1241,7 @@ class _ReportCarDialogState extends State<_ReportCarDialog> { mainAxisSize: MainAxisSize.min, children: [ DropdownButtonFormField( + isExpanded: true, initialValue: _selectedReason, decoration: const InputDecoration( labelText: 'Reason', @@ -1249,7 +1250,11 @@ class _ReportCarDialogState extends State<_ReportCarDialog> { .map( (reason) => DropdownMenuItem( value: reason, - child: Text(reason), + child: Text( + reason, + overflow: TextOverflow.ellipsis, + maxLines: 1, + ), ), ) .toList(),