mirror of
https://github.com/foss42/apidash.git
synced 2025-06-04 01:13:30 +08:00
wip: history details pane
This commit is contained in:
@ -8,16 +8,19 @@ class RawTextField extends StatelessWidget {
|
||||
this.controller,
|
||||
this.hintText,
|
||||
this.style,
|
||||
this.readOnly = false,
|
||||
});
|
||||
|
||||
final void Function(String)? onChanged;
|
||||
final TextEditingController? controller;
|
||||
final String? hintText;
|
||||
final TextStyle? style;
|
||||
final bool readOnly;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return TextField(
|
||||
readOnly: readOnly,
|
||||
controller: controller,
|
||||
onChanged: onChanged,
|
||||
style: style,
|
||||
|
Reference in New Issue
Block a user