Handle clipping of long wallet names on the wallet view title bar

This commit is contained in:
julian 2022-09-14 10:16:14 -06:00
parent 8b4215c6a1
commit 40076f3409

View file

@ -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,
),
)
],
),