-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext_editing_controller.dart
85 lines (78 loc) · 2.41 KB
/
text_editing_controller.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import 'package:flutter/material.dart';
import 'package:custom_text/custom_text.dart';
class ControllerExample extends StatefulWidget {
const ControllerExample([this.output]);
final void Function(String)? output;
@override
State<ControllerExample> createState() => _ControllerExampleState();
}
class _ControllerExampleState extends State<ControllerExample> {
late final _controller = CustomTextEditingController(
text: 'abcde foo@example.com\nhttps://example.com/ #hashtag',
definitions: [
TextDefinition(
matcher: const UrlMatcher(),
matchStyle: const TextStyle(
color: Colors.blue,
decoration: TextDecoration.underline,
),
tapStyle: const TextStyle(color: Colors.indigo),
onTap: widget.output == null
? null
: (details) => widget.output!(details.actionText),
onLongPress: widget.output == null
? null
: (details) => widget.output!('long: ${details.actionText}'),
),
TextDefinition(
matcher: const EmailMatcher(),
matchStyle: TextStyle(
color: Colors.green,
backgroundColor: Colors.lightGreen.withOpacity(0.2),
),
),
const TextDefinition(
matcher: PatternMatcher(r'#[a-zA-Z][a-zA-Z0-9]{1,}(?=\s|$)'),
matchStyle: TextStyle(color: Colors.orange),
hoverStyle: TextStyle(color: Colors.red),
),
],
);
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
const debounceDuration = Duration(seconds: 1);
return Column(
children: [
TextField(
controller: _controller,
maxLines: null,
style: const TextStyle(height: 1.4),
),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
const Text(
'Debounce\n(experimental)',
style: TextStyle(fontSize: 11.0, height: 1.1),
textAlign: TextAlign.center,
),
Switch(
value: _controller.debounceDuration != null,
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
onChanged: (on) {
setState(() {
_controller.debounceDuration = on ? debounceDuration : null;
});
},
),
],
),
],
);
}
}