diff --git a/lib/features/identity_creator/presentation/identity_creator_view.dart b/lib/features/identity_creator/presentation/identity_creator_view.dart index 098a5046f..18e5186d3 100644 --- a/lib/features/identity_creator/presentation/identity_creator_view.dart +++ b/lib/features/identity_creator/presentation/identity_creator_view.dart @@ -575,11 +575,13 @@ class IdentityCreatorView extends GetWidget return Column(children: [ _buildCheckboxIdentityDefault(context), const SizedBox(height: 24), - Row(children: [ - Expanded(child: _buildCancelButton(context)), - const SizedBox(width: 12), - Expanded(child: _buildSaveButton(context)) - ]) + SafeArea( + child: Row(children: [ + Expanded(child: _buildCancelButton(context)), + const SizedBox(width: 12), + Expanded(child: _buildSaveButton(context)) + ]), + ) ]); }