mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
Handle clipping of long wallet names on the wallet view title bar
This commit is contained in:
parent
8b4215c6a1
commit
40076f3409
1 changed files with 7 additions and 3 deletions
|
@ -376,9 +376,13 @@ class _WalletViewState extends ConsumerState<WalletView> {
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
width: 16,
|
width: 16,
|
||||||
),
|
),
|
||||||
Text(
|
Expanded(
|
||||||
ref.watch(managerProvider.select((value) => value.walletName)),
|
child: Text(
|
||||||
style: STextStyles.navBarTitle,
|
ref.watch(
|
||||||
|
managerProvider.select((value) => value.walletName)),
|
||||||
|
style: STextStyles.navBarTitle,
|
||||||
|
overflow: TextOverflow.ellipsis,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue