Vaibhav_Task-#729 #53

Merged
vaibhav.surve merged 10 commits from Vaibhav_Task-#729 into main 2025-07-15 09:52:02 +00:00
Showing only changes of commit 07bf9a93aa - Show all commits

View File

@ -521,12 +521,14 @@ class _AddContactBottomSheetState extends State<AddContactBottomSheet> {
return const Center(child: CircularProgressIndicator());
}
return SingleChildScrollView(
return SafeArea(
child: SingleChildScrollView(
padding: MediaQuery.of(context).viewInsets,
child: Container(
decoration: BoxDecoration(
color: Theme.of(context).cardColor,
borderRadius: const BorderRadius.vertical(top: Radius.circular(24)),
borderRadius:
const BorderRadius.vertical(top: Radius.circular(24)),
),
child: Padding(
padding: const EdgeInsets.fromLTRB(20, 16, 20, 32),
@ -558,8 +560,6 @@ class _AddContactBottomSheetState extends State<AddContactBottomSheet> {
options: controller.buckets,
),
MySpacing.height(24),
// Toggle for Advanced Section
Obx(() => GestureDetector(
onTap: () => showAdvanced.toggle(),
child: Row(
@ -625,13 +625,14 @@ class _AddContactBottomSheetState extends State<AddContactBottomSheet> {
maxLines: 2),
],
)
: SizedBox()),
: const SizedBox()),
MySpacing.height(24),
_buildActionButtons(),
],
),
)),
),
),
),
),
);
});