feat: Allow multi-line input for description field in AddContactBottomSheet

This commit is contained in:
Vaibhav Surve 2025-09-29 16:04:10 +05:30
parent b286ab854a
commit 8ad9690d89

View File

@ -547,7 +547,8 @@ class _AddContactBottomSheetState extends State<AddContactBottomSheet> {
MySpacing.height(16), MySpacing.height(16),
_textField("Address", addrCtrl), _textField("Address", addrCtrl),
MySpacing.height(16), MySpacing.height(16),
_textField("Description", descCtrl), _textField("Description", descCtrl,
maxLines: 3),
], ],
) )
: const SizedBox.shrink()), : const SizedBox.shrink()),