fix(add_contact): adjust padding in Add Contact Bottom Sheet for better layout

This commit is contained in:
Vaibhav Surve 2025-07-15 14:56:44 +05:30
parent e624fb00a0
commit 0335b0d3ab

View File

@ -523,7 +523,9 @@ class _AddContactBottomSheetState extends State<AddContactBottomSheet> {
return SafeArea( return SafeArea(
child: SingleChildScrollView( child: SingleChildScrollView(
padding: MediaQuery.of(context).viewInsets, padding: EdgeInsets.only(
top: 32,
).add(MediaQuery.of(context).viewInsets),
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
color: Theme.of(context).cardColor, color: Theme.of(context).cardColor,