fixed long exposures overflow

This commit is contained in:
Vadim 2024-04-26 15:45:58 +02:00
parent 04d9766a10
commit 104940d275

View file

@ -15,9 +15,13 @@ class ExposurePairsListItem<T extends PhotographyStopValue> extends StatelessWid
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
final List<Widget> rowChildren = [ final List<Widget> rowChildren = [
Text( Flexible(
value.toString(), child: Text(
style: labelTextStyle(context).copyWith(color: Theme.of(context).colorScheme.onBackground), value.toString(),
style: labelTextStyle(context).copyWith(color: Theme.of(context).colorScheme.onBackground),
softWrap: false,
overflow: TextOverflow.fade,
),
), ),
const SizedBox(width: Dimens.grid8), const SizedBox(width: Dimens.grid8),
ColoredBox( ColoredBox(