#152 selection dialog text wrap

This commit is contained in:
Thibault Deckers 2023-01-18 15:08:30 +01:00
parent 54aa981fd1
commit 841f40fe0f

View file

@ -135,16 +135,14 @@ class SelectionRadioListTile<T> extends StatelessWidget {
reselectable: true,
title: Text(
title,
softWrap: false,
overflow: TextOverflow.fade,
maxLines: 1,
overflow: TextOverflow.ellipsis,
maxLines: 2,
),
subtitle: subtitle != null
? Text(
subtitle,
softWrap: false,
overflow: TextOverflow.fade,
maxLines: 1,
)
: null,
dense: dense,