Skip to content

Commit

Permalink
TF-3114 Fix list buttons covered by keyboard in identity creator view
Browse files Browse the repository at this point in the history
  • Loading branch information
dab246 authored and hoangdat committed Sep 17, 2024
1 parent 7f16d92 commit e5e4a68
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,17 @@ class IdentityCreatorView extends GetWidget<IdentityCreatorController>
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();
}
})
]);
}

Expand Down

0 comments on commit e5e4a68

Please sign in to comment.