mirror of
https://github.com/foss42/apidash.git
synced 2025-05-22 00:36:43 +08:00
134 lines
3.1 KiB
Dart
134 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:apidash/consts.dart';
|
|
|
|
class URLField extends StatelessWidget {
|
|
const URLField({
|
|
super.key,
|
|
required this.selectedId,
|
|
this.initialValue,
|
|
this.onChanged,
|
|
this.onFieldSubmitted,
|
|
});
|
|
|
|
final String selectedId;
|
|
final String? initialValue;
|
|
final void Function(String)? onChanged;
|
|
final void Function(String)? onFieldSubmitted;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextFormField(
|
|
key: Key("url-$selectedId"),
|
|
initialValue: initialValue,
|
|
style: kCodeStyle,
|
|
decoration: InputDecoration(
|
|
hintText: kHintTextUrlCard,
|
|
hintStyle: kCodeStyle.copyWith(
|
|
color: Theme.of(context).colorScheme.outline.withOpacity(
|
|
kHintOpacity,
|
|
),
|
|
),
|
|
border: InputBorder.none,
|
|
),
|
|
onChanged: onChanged,
|
|
onFieldSubmitted: onFieldSubmitted,
|
|
);
|
|
}
|
|
}
|
|
|
|
class CellField extends StatelessWidget {
|
|
const CellField({
|
|
super.key,
|
|
required this.keyId,
|
|
this.initialValue,
|
|
this.hintText,
|
|
this.onChanged,
|
|
this.colorScheme,
|
|
});
|
|
|
|
final String keyId;
|
|
final String? initialValue;
|
|
final String? hintText;
|
|
final void Function(String)? onChanged;
|
|
final ColorScheme? colorScheme;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var clrScheme = colorScheme ?? Theme.of(context).colorScheme;
|
|
return TextFormField(
|
|
key: Key(keyId),
|
|
initialValue: initialValue,
|
|
style: kCodeStyle.copyWith(
|
|
color: clrScheme.onSurface,
|
|
),
|
|
decoration: InputDecoration(
|
|
hintStyle: kCodeStyle.copyWith(
|
|
color: clrScheme.outline.withOpacity(
|
|
kHintOpacity,
|
|
),
|
|
),
|
|
hintText: hintText,
|
|
focusedBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: clrScheme.primary.withOpacity(
|
|
kHintOpacity,
|
|
),
|
|
),
|
|
),
|
|
enabledBorder: UnderlineInputBorder(
|
|
borderSide: BorderSide(
|
|
color: clrScheme.surfaceVariant,
|
|
),
|
|
),
|
|
),
|
|
onChanged: onChanged,
|
|
);
|
|
}
|
|
}
|
|
|
|
class JsonSearchField extends StatelessWidget {
|
|
const JsonSearchField({super.key, this.onChanged, this.controller});
|
|
|
|
final void Function(String)? onChanged;
|
|
final TextEditingController? controller;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return RawTextField(
|
|
controller: controller,
|
|
onChanged: onChanged,
|
|
style: kCodeStyle,
|
|
hintText: 'Search..',
|
|
);
|
|
}
|
|
}
|
|
|
|
class RawTextField extends StatelessWidget {
|
|
const RawTextField({
|
|
super.key,
|
|
this.onChanged,
|
|
this.controller,
|
|
this.hintText,
|
|
this.style,
|
|
});
|
|
|
|
final void Function(String)? onChanged;
|
|
final TextEditingController? controller;
|
|
final String? hintText;
|
|
final TextStyle? style;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return TextField(
|
|
controller: controller,
|
|
onChanged: onChanged,
|
|
style: style,
|
|
decoration: InputDecoration(
|
|
isDense: true,
|
|
border: InputBorder.none,
|
|
hintText: hintText,
|
|
),
|
|
);
|
|
}
|
|
}
|