mobile rep fix

This commit is contained in:
julian 2023-07-21 16:09:47 -06:00
parent 3125a25a69
commit 8a0a45f131

View file

@ -293,25 +293,25 @@ class _XPubViewState extends ConsumerState<ChangeRepresentativeView> {
const SizedBox(
height: 4,
),
child,
],
),
child: Row(
children: [
SelectableText(
representative!,
style: isDesktop
? STextStyles.desktopTextExtraExtraSmall(
context)
.copyWith(
color: Theme.of(context)
.extension<StackColors>()!
.textDark,
)
: STextStyles.itemSubtitle12(context),
Row(
children: [
child,
],
),
],
),
child: SelectableText(
representative!,
style: isDesktop
? STextStyles.desktopTextExtraExtraSmall(
context)
.copyWith(
color: Theme.of(context)
.extension<StackColors>()!
.textDark,
)
: STextStyles.itemSubtitle12(context),
),
),
),
const SizedBox(