diff --git a/lib/features/identity_creator/presentation/identity_creator_view.dart b/lib/features/identity_creator/presentation/identity_creator_view.dart index 18e5186d3..37e19af41 100644 --- a/lib/features/identity_creator/presentation/identity_creator_view.dart +++ b/lib/features/identity_creator/presentation/identity_creator_view.dart @@ -581,7 +581,17 @@ class IdentityCreatorView extends GetWidget const SizedBox(width: 12), Expanded(child: _buildSaveButton(context)) ]), - ) + ), + if (controller.richTextMobileTabletController != null) + ValueListenableBuilder( + valueListenable: controller.richTextMobileTabletController!.richTextController.richTextToolbarNotifier, + builder: (_, isShowing, __) { + if (isShowing) { + return const SizedBox(height: 48); + } else { + return const SizedBox.shrink(); + } + }) ]); }