fix: merge fixes

This commit is contained in:
Rafael Saes 2023-07-12 09:45:24 -03:00
parent d9fd3bdc03
commit 3051718622

View file

@ -155,7 +155,7 @@ class AddressTextField extends StatelessWidget {
child: Image.asset( child: Image.asset(
'assets/images/qr_code_icon.png', 'assets/images/qr_code_icon.png',
color: iconColor ?? color: iconColor ??
Theme.of(context).dialogTheme.backgroundColor, Theme.of(context).extension<SendPageTheme>()!.textFieldButtonIconColor,
)), )),
), ),
)) ))
@ -183,7 +183,7 @@ class AddressTextField extends StatelessWidget {
child: Image.asset( child: Image.asset(
'assets/images/open_book.png', 'assets/images/open_book.png',
color: iconColor ?? color: iconColor ??
Theme.of(context).dialogTheme.backgroundColor, Theme.of(context).extension<SendPageTheme>()!.textFieldButtonIconColor,
)), )),
), ),
)) ))