TF-3114 Fix list buttons covered by keyboard in identity creator view

This commit is contained in:
dab246
2024-09-10 00:32:15 +07:00
committed by Dat H. Pham
parent 7f16d92f19
commit e5e4a6896d
@@ -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();
}
})
]);
}