Files
smooth-app/packages/smooth_app/lib/helpers/extension_on_text_helper.dart
2022-11-22 14:04:34 +01:00

30 lines
811 B
Dart

import 'package:flutter/material.dart';
extension Selectable on Text {
Widget selectable({bool isSelectable = true}) {
return isSelectable
? SelectableText(
data!,
style: style,
strutStyle: strutStyle,
textDirection: textDirection,
textScaleFactor: textScaleFactor,
textAlign: textAlign,
maxLines: maxLines,
toolbarOptions: const ToolbarOptions(
copy: true,
selectAll: true,
),
)
: Text(
data!,
style: style,
strutStyle: strutStyle,
textDirection: textDirection,
textScaleFactor: textScaleFactor,
textAlign: textAlign,
maxLines: maxLines,
);
}
}