enhance UI for used addresses (#1337)

* enhance UI for used addresses

* Update electrum_wallet_addresses.dart

* fix tablet UI

---------

Co-authored-by: Serhii <borodenko.sv@gmail.com>
This commit is contained in:
Omar Hatem 2024-04-10 03:28:31 +02:00 committed by GitHub
parent f9679fecbe
commit 8a61ab7780
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 72 additions and 31 deletions

View file

@ -46,6 +46,10 @@ abstract class ResponsiveLayoutUtilBase with Store, WidgetsBindingObserver {
(orientation == Orientation.portrait && screenWidth < screenHeight) ||
(orientation == Orientation.landscape && screenWidth < screenHeight);
}
bool get shouldRenderTabletUI {
return screenWidth > _kMobileThreshold && screenWidth < kDesktopMaxDashBoardWidthConstraint;
}
}
_ResponsiveLayoutUtil _singletonResponsiveLayoutUtil = _ResponsiveLayoutUtil();