SelectableText Widget
Project Preview
- Interested in seeing the live demo? Click here to explore.
- Want to view the source code? Visit the project on GitHub.
Code Snippet
import 'package:flutter/material.dart';
class SelectableTextWidget extends StatelessWidget {
const SelectableTextWidget({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("SelectableText Widget"),
),
body: Center(
child: SelectableText(
'This is a selectable text',
style: const TextStyle(fontSize: 30),
onSelectionChanged: (selection, cause) {
print(selection);
print(cause);
},
),
),
);
}
}