error message style

This commit is contained in:
julian 2023-10-17 09:32:02 -06:00
parent d21964fbdc
commit b87ec27773

View file

@ -169,7 +169,12 @@ class _ProgressItem extends StatelessWidget {
),
title: label,
subTitle: info != null
? Text(info!) // TODO style error message eg. red.
? Text(
info!,
style: STextStyles.w500_12(context).copyWith(
color: Theme.of(context).extension<StackColors>()!.textError,
),
)
: null,
),
);