TF-2675 Pin save button to bottom in edit identity dialog web
This commit is contained in:
@@ -239,9 +239,7 @@ class IdentityCreatorView extends GetWidget<IdentityCreatorController>
|
|||||||
),
|
),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
if (controller.isMobile(context))
|
if (controller.isMobile(context))
|
||||||
_buildActionButtonMobile(context)
|
_buildActionButtonMobile(context),
|
||||||
else
|
|
||||||
_buildActionButtonDesktop(context),
|
|
||||||
if (PlatformInfo.isMobile)
|
if (PlatformInfo.isMobile)
|
||||||
Obx(() {
|
Obx(() {
|
||||||
if (controller.isMobileEditorFocus.isTrue) {
|
if (controller.isMobileEditorFocus.isTrue) {
|
||||||
@@ -258,7 +256,14 @@ class IdentityCreatorView extends GetWidget<IdentityCreatorController>
|
|||||||
onTap: () => controller.clearFocusEditor(context),
|
onTap: () => controller.clearFocusEditor(context),
|
||||||
child: Column(children: [
|
child: Column(children: [
|
||||||
_buildHeaderView(context),
|
_buildHeaderView(context),
|
||||||
Expanded(child: PointerInterceptor(child: bodyCreatorView))
|
Expanded(child: PointerInterceptor(child: bodyCreatorView)),
|
||||||
|
if (!controller.isMobile(context)) ...[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 24),
|
||||||
|
child: _buildActionButtonDesktop(context),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 12),
|
||||||
|
],
|
||||||
]),
|
]),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user