mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-02 19:26:37 +00:00
button height fix
This commit is contained in:
parent
056cba2672
commit
f30c82c748
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class _PaynymFollowToggleButtonState
|
|||
Widget build(BuildContext context) {
|
||||
return PrimaryButton(
|
||||
width: isDesktop ? 120 : 84,
|
||||
buttonHeight: ButtonHeight.l,
|
||||
buttonHeight: isDesktop ? ButtonHeight.s : ButtonHeight.l,
|
||||
label: isFollowing ? "Unfollow" : "Follow",
|
||||
onPressed: () async {
|
||||
if (!_lock) {
|
||||
|
|
Loading…
Reference in a new issue