mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
74 lines
1.9 KiB
Dart
74 lines
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
class LightmeterTextField extends StatefulWidget {
|
|
const LightmeterTextField({
|
|
this.autofocus = false,
|
|
this.controller,
|
|
this.hintText,
|
|
this.initialValue,
|
|
this.inputFormatters,
|
|
this.leading,
|
|
this.maxLength,
|
|
this.onChanged,
|
|
this.style,
|
|
this.textAlign = TextAlign.start,
|
|
});
|
|
|
|
final bool autofocus;
|
|
final TextEditingController? controller;
|
|
final String? hintText;
|
|
final String? initialValue;
|
|
final List<TextInputFormatter>? inputFormatters;
|
|
final Widget? leading;
|
|
final int? maxLength;
|
|
final void Function(String)? onChanged;
|
|
final TextStyle? style;
|
|
final TextAlign textAlign;
|
|
|
|
@override
|
|
State<LightmeterTextField> createState() => _LightmeterTextFieldState();
|
|
}
|
|
|
|
class _LightmeterTextFieldState extends State<LightmeterTextField> {
|
|
late final focusNode = FocusNode(debugLabel: widget.hintText);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextFormField(
|
|
autofocus: widget.autofocus,
|
|
autovalidateMode: AutovalidateMode.onUserInteraction,
|
|
controller: widget.controller,
|
|
focusNode: focusNode,
|
|
initialValue: widget.initialValue,
|
|
inputFormatters: widget.inputFormatters,
|
|
maxLength: widget.maxLength,
|
|
onChanged: widget.onChanged,
|
|
style: widget.style,
|
|
textAlign: widget.textAlign,
|
|
decoration: InputDecoration(
|
|
counter: const SizedBox(),
|
|
contentPadding: EdgeInsets.zero,
|
|
errorStyle: const TextStyle(fontSize: 0),
|
|
icon: widget.leading,
|
|
hintText: widget.hintText,
|
|
),
|
|
onTapOutside: (event) {
|
|
focusNode.unfocus();
|
|
},
|
|
validator: (value) {
|
|
if (value == null || value.isEmpty) {
|
|
return '';
|
|
} else {
|
|
return null;
|
|
}
|
|
},
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
focusNode.dispose();
|
|
super.dispose();
|
|
}
|
|
}
|