mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
paynym not found desktop style fixes
This commit is contained in:
parent
f30c82c748
commit
1e3a42fd9a
1 changed files with 8 additions and 1 deletions
|
@ -419,12 +419,19 @@ class _AddNewPaynymFollowViewState
|
||||||
),
|
),
|
||||||
if (_didSearch && _searchResult == null)
|
if (_didSearch && _searchResult == null)
|
||||||
RoundedWhiteContainer(
|
RoundedWhiteContainer(
|
||||||
|
borderColor: isDesktop
|
||||||
|
? Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.backgroundAppBar
|
||||||
|
: null,
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
"Nothing found. Please check the payment code.",
|
"Nothing found. Please check the payment code.",
|
||||||
style: STextStyles.label(context),
|
style: isDesktop
|
||||||
|
? STextStyles.desktopTextExtraExtraSmall(context)
|
||||||
|
: STextStyles.label(context),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue