mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-26 21:50:18 +08:00
30 lines
811 B
Dart
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,
|
|
);
|
|
}
|
|
}
|