fixed readings text overflow

This commit is contained in:
Vadim 2022-11-26 22:47:37 +03:00
parent 9e96f579d9
commit bf9e80c5d2

View file

@ -63,7 +63,7 @@ class _ReadingValueBuilder extends StatelessWidget {
const SizedBox(height: Dimens.grid4), const SizedBox(height: Dimens.grid4),
Text( Text(
reading.value, reading.value,
style: textTheme.titleLarge?.copyWith(color: Theme.of(context).colorScheme.onPrimaryContainer), style: textTheme.bodyLarge?.copyWith(color: Theme.of(context).colorScheme.onPrimaryContainer),
), ),
], ],
); );