From ce59e64ae311115c9af9b407491410f0a98a8ff3 Mon Sep 17 00:00:00 2001
From: vjrj <vjrj@comunes.org>
Date: Tue, 20 Jun 2023 22:15:03 +0200
Subject: [PATCH] Fix for #39

---
 lib/ui/widgets/first_screen/pay_contact_search_page.dart | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/ui/widgets/first_screen/pay_contact_search_page.dart b/lib/ui/widgets/first_screen/pay_contact_search_page.dart
index bad3972f..0ec0edb0 100644
--- a/lib/ui/widgets/first_screen/pay_contact_search_page.dart
+++ b/lib/ui/widgets/first_screen/pay_contact_search_page.dart
@@ -127,7 +127,7 @@ class _PayContactSearchPageState extends State<PayContactSearchPage> {
       appBar: AppBar(
         title: Text(tr('search_user_title')),
         backgroundColor: Theme.of(context).colorScheme.primary,
-        foregroundColor: Colors.white,
+        foregroundColor: Theme.of(context).colorScheme.inversePrimary,
         actions: <Widget>[
           IconButton(
               icon: const Icon(Icons.qr_code_scanner),
@@ -177,7 +177,7 @@ class _PayContactSearchPageState extends State<PayContactSearchPage> {
               controller: _searchController,
               decoration: InputDecoration(
                 filled: true,
-                fillColor: Colors.white,
+                //fillColor: Colors.white,
                 labelText: tr('search_user'),
                 suffixIcon: IconButton(
                   icon: const Icon(Icons.search),
-- 
GitLab