selectable method
Widget
selectable({
- SelectionController? controller,
- Style? selectionHighlightStyle,
- TextAlign textAlign = TextAlign.left,
- bool softWrap = true,
- TextOverflow overflow = TextOverflow.clip,
- int? maxWidth,
Implementation
Widget selectable({
SelectionController? controller,
Style? selectionHighlightStyle,
TextAlign textAlign = TextAlign.left,
bool softWrap = true,
TextOverflow overflow = TextOverflow.clip,
int? maxWidth,
}) {
return SelectableView(
this,
controller: controller,
selectionHighlightStyle: selectionHighlightStyle,
textAlign: textAlign,
softWrap: softWrap,
overflow: overflow,
maxWidth: maxWidth,
);
}