From: Shan Shaji <s.shaji@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH proxmox_login_manager v2 3/4] fix: ui: remove app bar and stack the close button on body
Date: Tue, 11 Nov 2025 15:00:04 +0100 [thread overview]
Message-ID: <20251111140005.41510-4-s.shaji@proxmox.com> (raw)
In-Reply-To: <20251111140005.41510-1-s.shaji@proxmox.com>
In landscape and portrait mode when adding a remote once the "Origin"
field is selected, the top bar becomes a slightly different shade of
blue. This occurs after the keyboard appears and the entire body
begins to scroll.
To fix this, the app bar was removed and the close button was stacked
within the body. The height was also constrained to avoid system
intrusion areas otherwise, the Continue button would not be visible.
Additionally, in landscape mode, the logo caused render flex issues
because the `Image`` widget was placed inside a `Column` and the logo
was trying to take more height than the available height. This was
fixed by removing the column and used `Align` widget to center the logo.
Signed-off-by: Shan Shaji <s.shaji@proxmox.com>
---
changes since v1:
- Remove the SafeArea wrapping the stack.
- Wrap the login body and Close button with SafeArea.
- Stack the close button on top of loading overlay or else it would be
impossible to press the close button.
lib/proxmox_login_form.dart | 47 +++++++++++++++++--------------------
1 file changed, 22 insertions(+), 25 deletions(-)
diff --git a/lib/proxmox_login_form.dart b/lib/proxmox_login_form.dart
index 8f290b4..80dc4a2 100644
--- a/lib/proxmox_login_form.dart
+++ b/lib/proxmox_login_form.dart
@@ -308,24 +308,17 @@ class _ProxmoxLoginPageState extends State<ProxmoxLoginPage> {
),
child: Scaffold(
backgroundColor: ProxmoxColors.supportBlue,
- extendBodyBehindAppBar: true,
- appBar: AppBar(
- elevation: 0.0,
- backgroundColor: Colors.transparent,
- leading: IconButton(
- icon: const Icon(Icons.close),
- tooltip: "Close",
- onPressed: () => Navigator.of(context).pop(),
- ),
- ),
body: Stack(
children: [
- SingleChildScrollView(
+ SafeArea(
+ child: SingleChildScrollView(
child: ConstrainedBox(
constraints: BoxConstraints.tightFor(
- height: MediaQuery.of(context).size.height),
- child: SafeArea(
- child: Padding(
+ height: MediaQuery.sizeOf(context).height -
+ MediaQuery.viewPaddingOf(context).bottom -
+ MediaQuery.viewPaddingOf(context).top,
+ ),
+ child: Padding(
padding: EdgeInsets.symmetric(
horizontal: MediaQuery.maybeOrientationOf(context) ==
Orientation.portrait
@@ -347,15 +340,13 @@ class _ProxmoxLoginPageState extends State<ProxmoxLoginPage> {
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Image.asset(
- 'assets/images/proxmox_logo_symbol_wordmark.png',
- package: 'proxmox_login_manager',
- ),
- ],
- ),
+ child: Align(
+ alignment: Alignment.center,
+ child: Image.asset(
+ 'assets/images/proxmox_logo_symbol_wordmark.png',
+ package: 'proxmox_login_manager',
+ ),
+ )
),
ProxmoxLoginForm(
originController: _originController,
@@ -449,10 +440,16 @@ class _ProxmoxLoginPageState extends State<ProxmoxLoginPage> {
}),
),
),
- ),
- ),
+ )),
if (_progressModel.inProgress > 0)
ProxmoxProgressOverlay(message: _progressModel.message),
+ SafeArea(
+ child: IconButton(
+ icon: const Icon(Icons.close),
+ tooltip: "Close",
+ onPressed: () => Navigator.of(context).pop(),
+ ),
+ ),
],
),
),
--
2.50.1
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next prev parent reply other threads:[~2025-11-11 13:59 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-11 14:00 [pve-devel] [PATCH proxmox_login_manager v2 0/4] fix #6983: ui: make cosmetic changes inside the login screen Shan Shaji
2025-11-11 14:00 ` [pve-devel] [PATCH proxmox_login_manager v2 1/4] fix: ui: disable continue button by default in login form Shan Shaji
2025-11-11 14:00 ` [pve-devel] [PATCH proxmox_login_manager v2 2/4] fix: ui: add more padding around the form in portrait mode Shan Shaji
2025-11-11 14:00 ` Shan Shaji [this message]
2025-11-11 14:00 ` [pve-devel] [PATCH proxmox_login_manager v2 4/4] cleanup: run dart format command to fix formatting Shan Shaji
2025-11-12 9:21 ` [pve-devel] applied: [PATCH proxmox_login_manager v2 0/4] fix #6983: ui: make cosmetic changes inside the login screen Dominik Csapak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251111140005.41510-4-s.shaji@proxmox.com \
--to=s.shaji@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.