-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext_field.dart
323 lines (277 loc) · 10.7 KB
/
text_field.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
import 'package:flutter/cupertino.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:platty/platty.dart';
class PTextField extends PlatformAdaptingWidget {
final TextEditingController controller;
/// {@macro flutter.widgets.Focus.focusNode}
final FocusNode focusNode;
final BoxDecoration iosDecoration;
final InputDecoration decoration;
/// If true, we try to map the [InputDecoration] [decoration] to iOS by converting
/// [OutlineInputBorder] to a similar border on iOS. There may be more patches
/// in the future.
final bool iOSMirrorVisualDecoration;
final OverlayVisibilityMode iosPrefixMode;
final OverlayVisibilityMode iosSuffixMode;
final OverlayVisibilityMode iosClearButtonMode;
/// {@macro flutter.widgets.editableText.keyboardType}
final TextInputType iosKeyboardType;
final TextInputAction textInputAction;
/// {@macro flutter.widgets.editableText.textCapitalization}
final TextCapitalization textCapitalization;
final TextStyle style;
final StrutStyle strutStyle;
final TextAlign textAlign;
final ToolbarOptions toolbarOptions;
/// {@macro flutter.material.inputDecorator.textAlignVertical}
final TextAlignVertical textAlignVertical;
/// {@macro flutter.widgets.editableText.readOnly}
final bool readOnly;
/// {@macro flutter.widgets.editableText.showCursor}
final bool showCursor;
/// {@macro flutter.widgets.editableText.autofocus}
final bool autofocus;
/// {@macro flutter.widgets.editableText.obscureText}
final bool obscureText;
/// {@macro flutter.widgets.editableText.autocorrect}
final bool autocorrect;
/// {@macro flutter.widgets.editableText.maxLines}
final int maxLines;
/// {@macro flutter.widgets.editableText.minLines}
final int minLines;
/// {@macro flutter.widgets.editableText.expands}
final bool expands;
final int maxLength;
final bool maxLengthEnforced;
/// {@macro flutter.widgets.editableText.onChanged}
final ValueChanged<String> onChanged;
/// {@macro flutter.widgets.editableText.onEditingComplete}
final VoidCallback onEditingComplete;
final ValueChanged<String> onSubmitted;
/// {@macro flutter.widgets.editableText.inputFormatters}
final List<TextInputFormatter> inputFormatters;
final bool enabled;
/// {@macro flutter.widgets.editableText.cursorWidth}
final double cursorWidth;
/// {@macro flutter.widgets.editableText.cursorRadius}
final Radius cursorRadius;
final Color cursorColor;
final Brightness iosKeyboardAppearance;
/// {@macro flutter.widgets.editableText.scrollPadding}
final EdgeInsets scrollPadding;
/// {@macro flutter.widgets.editableText.enableInteractiveSelection}
final bool enableInteractiveSelection;
/// {@macro flutter.widgets.scrollable.dragStartBehavior}
final DragStartBehavior dragStartBehavior;
/// {@macro flutter.widgets.editableText.scrollController}
final ScrollController scrollController;
/// {@macro flutter.widgets.edtiableText.scrollPhysics}
final ScrollPhysics scrollPhysics;
/// {@macro flutter.rendering.editable.selectionEnabled}
bool get selectionEnabled => enableInteractiveSelection;
/// {@macro flutter.material.textfield.onTap}
final GestureTapCallback onTap;
PTextField({
this.controller,
this.focusNode,
this.iosDecoration,
this.decoration,
this.iOSMirrorVisualDecoration = true,
this.iosPrefixMode,
this.iosSuffixMode,
this.iosClearButtonMode,
this.iosKeyboardType,
this.textInputAction,
this.textCapitalization = TextCapitalization.none,
this.style,
this.strutStyle,
this.textAlign = TextAlign.start,
this.toolbarOptions,
this.textAlignVertical,
this.readOnly = false,
this.showCursor,
this.autofocus = false,
this.obscureText = false,
this.autocorrect = true,
this.maxLines = 1,
this.minLines,
this.expands = false,
this.maxLength,
this.maxLengthEnforced = true,
this.onChanged,
this.onEditingComplete,
this.onSubmitted,
this.inputFormatters,
this.enabled,
this.cursorWidth = 2.0,
this.cursorRadius = const Radius.circular(2.0),
this.cursorColor,
this.iosKeyboardAppearance,
this.scrollPadding = const EdgeInsets.all(20.0),
this.enableInteractiveSelection = true,
this.dragStartBehavior,
this.scrollController,
this.scrollPhysics,
this.onTap,
Key key,
}) : super(key: key);
@override
// TODO: implement renderCupertino
get renderCupertino => (BuildContext context) {
/// patch same hint style as material, since cupertino does not
/// directly support it.
final themeData = Theme.of(context);
final hintStyle =
decoration?.hintStyle ?? TextStyle(color: themeData?.hintColor);
final decorationBorder = decoration?.border;
final iosDecoration = this.iosDecoration ??
// map the outline input border to the iosDecoration by default.
(decorationBorder is OutlineInputBorder &&
this.iOSMirrorVisualDecoration
? BoxDecoration(
border: Border.fromBorderSide(decorationBorder.borderSide),
color: decoration?.fillColor,
borderRadius: decorationBorder.borderRadius,
)
: null);
final cupertinoTextField = CupertinoTextField(
controller: this.controller,
focusNode: this.focusNode,
decoration: iosDecoration,
padding: decoration?.contentPadding ?? const EdgeInsets.all(6.0),
placeholder: decoration?.hintText,
placeholderStyle: hintStyle,
prefix: decoration?.prefix,
prefixMode: this.iosPrefixMode ?? OverlayVisibilityMode.always,
suffix: decoration?.suffix,
suffixMode: this.iosSuffixMode ?? OverlayVisibilityMode.always,
clearButtonMode:
this.iosClearButtonMode ?? OverlayVisibilityMode.never,
keyboardType: this.iosKeyboardType,
textInputAction: this.textInputAction,
textCapitalization: this.textCapitalization,
style: this.style,
strutStyle: this.strutStyle,
textAlign: this.textAlign,
textAlignVertical: this.textAlignVertical,
readOnly: this.readOnly,
toolbarOptions: this.toolbarOptions,
showCursor: this.showCursor,
autofocus: this.autofocus,
obscureText: this.obscureText,
autocorrect: this.autocorrect,
maxLines: this.maxLines,
minLines: this.minLines,
expands: this.expands,
maxLength: this.maxLength,
maxLengthEnforced: this.maxLengthEnforced,
onChanged: this.onChanged,
onEditingComplete: this.onEditingComplete,
onSubmitted: this.onSubmitted,
inputFormatters: this.inputFormatters,
enabled: this.enabled,
cursorWidth: this.cursorWidth,
cursorRadius: this.cursorRadius,
cursorColor: this.cursorColor,
keyboardAppearance: this.iosKeyboardAppearance,
scrollPadding: this.scrollPadding,
dragStartBehavior: this.dragStartBehavior ?? DragStartBehavior.start,
enableInteractiveSelection: this.enableInteractiveSelection,
onTap: this.onTap,
scrollController: this.scrollController,
scrollPhysics: this.scrollPhysics,
);
// if error text, place error text at bottom
final helperText = this.decoration.helperText;
final errorText = this.decoration.errorText;
if (errorText != null && errorText.isNotEmpty) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
cupertinoTextField,
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
errorText,
textAlign: TextAlign.start,
style: _getErrorStyle(themeData),
),
),
],
);
} else if (helperText != null && helperText.isNotEmpty) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
cupertinoTextField,
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
helperText,
textAlign: TextAlign.start,
style: _getHelperStyle(themeData),
),
),
],
);
}
return cupertinoTextField;
};
TextStyle _getErrorStyle(ThemeData themeData) {
final Color color =
decoration.enabled ? themeData.errorColor : Colors.transparent;
return themeData.textTheme.caption
.copyWith(color: color)
.merge(decoration.errorStyle);
}
TextStyle _getHelperStyle(ThemeData themeData) {
final Color color =
decoration.enabled ? themeData.hintColor : Colors.transparent;
return themeData.textTheme.caption
.copyWith(color: color)
.merge(decoration.helperStyle);
}
@override
// TODO: implement renderMaterial
get renderMaterial => (BuildContext context) {
return TextField(
controller: this.controller,
focusNode: this.focusNode,
decoration: this.decoration,
textInputAction: textInputAction,
textCapitalization: textCapitalization,
style: this.style,
strutStyle: this.strutStyle,
textAlign: this.textAlign,
textAlignVertical: this.textAlignVertical,
readOnly: this.readOnly,
toolbarOptions: this.toolbarOptions,
showCursor: this.showCursor,
autofocus: this.autofocus,
obscureText: this.obscureText,
autocorrect: this.autocorrect,
maxLines: this.maxLines,
minLines: this.minLines,
expands: this.expands,
maxLength: this.maxLength,
maxLengthEnforced: this.maxLengthEnforced,
onChanged: this.onChanged,
onEditingComplete: this.onEditingComplete,
onSubmitted: this.onSubmitted,
inputFormatters: this.inputFormatters,
enabled: this.enabled,
cursorWidth: this.cursorWidth,
cursorRadius: this.cursorRadius,
cursorColor: this.cursorColor,
scrollPadding: this.scrollPadding,
enableInteractiveSelection: this.enableInteractiveSelection,
onTap: this.onTap,
scrollController: this.scrollController,
scrollPhysics: this.scrollPhysics,
);
};
}