mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +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(
|
||||
width: 16,
|
||||
),
|
||||
Text(
|
||||
ref.watch(managerProvider.select((value) => value.walletName)),
|
||||
style: STextStyles.navBarTitle,
|
||||
Expanded(
|
||||
child: Text(
|
||||
ref.watch(
|
||||
managerProvider.select((value) => value.walletName)),
|
||||
style: STextStyles.navBarTitle,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue