#152 selection dialog text wrap
This commit is contained in:
parent
54aa981fd1
commit
841f40fe0f
1 changed files with 2 additions and 4 deletions
|
@ -135,16 +135,14 @@ class SelectionRadioListTile<T> extends StatelessWidget {
|
||||||
reselectable: true,
|
reselectable: true,
|
||||||
title: Text(
|
title: Text(
|
||||||
title,
|
title,
|
||||||
softWrap: false,
|
overflow: TextOverflow.ellipsis,
|
||||||
overflow: TextOverflow.fade,
|
maxLines: 2,
|
||||||
maxLines: 1,
|
|
||||||
),
|
),
|
||||||
subtitle: subtitle != null
|
subtitle: subtitle != null
|
||||||
? Text(
|
? Text(
|
||||||
subtitle,
|
subtitle,
|
||||||
softWrap: false,
|
softWrap: false,
|
||||||
overflow: TextOverflow.fade,
|
overflow: TextOverflow.fade,
|
||||||
maxLines: 1,
|
|
||||||
)
|
)
|
||||||
: null,
|
: null,
|
||||||
dense: dense,
|
dense: dense,
|
||||||
|
|
Loading…
Reference in a new issue