Minor UI Fixes (#3108)

* Fix Filter button padding * Fix sign/verify closing popup

tuxsudo committed Mar 19, 2026 at 20:07 UTC a8d9f0877bf68ec8b9679fed5fc02941c9e0d307
2 files changed +3 -3
lib/new-ui/widgets/coins_page/assets_history/assets_top_bar.dart
+1 -1
@@ -67,7 +67,7 @@ class AssetsTopBar extends StatelessWidget {
67 child: Padding(
68 padding: const EdgeInsets.symmetric(horizontal: 12.0),
69 child: Row(
70 - spacing: 0,
70 + spacing: 6,
71 children: [
72 CakeImageWidget(
73 imageUrl: "assets/new-ui/options_slider.svg",
lib/src/screens/dashboard/sign_page.dart
+2 -2
@@ -144,13 +144,13 @@ class _SignPageState extends State<SignPage> {
144 WidgetsBinding.instance.addPostFrameCallback((_) {
145 showPopUp<void>(
146 context: context,
147 - builder: (_) {
147 + builder: (_context) {
148 return AlertWithOneAction(
149 alertTitle: S.current.error,
150 alertContent: state.error,
151 buttonText: S.of(context).ok,
152 buttonAction: () {
153 - if (context.mounted && Navigator.canPop(context)) Navigator.of(context).pop();
153 + if (context.mounted && Navigator.canPop(_context)) Navigator.of(_context).pop();
154 },
155 );
156 });