#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,
|
||||
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,
|
||||
|
|
Loading…
Reference in a new issue