mirror of
https://github.com/foss42/apidash.git
synced 2025-06-17 11:54:51 +08:00
Merge pull request #251 from opxdelwin/padding-issue-on-headers
[fix] Fix vertical obscuring issue in form data section
This commit is contained in:
@ -52,6 +52,7 @@ class _FormDataFieldState extends State<FormDataField> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
hintText: widget.hintText,
|
hintText: widget.hintText,
|
||||||
|
contentPadding: const EdgeInsets.only(bottom: 16),
|
||||||
focusedBorder: UnderlineInputBorder(
|
focusedBorder: UnderlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: colorScheme.primary.withOpacity(
|
color: colorScheme.primary.withOpacity(
|
||||||
@ -71,7 +72,8 @@ class _FormDataFieldState extends State<FormDataField> {
|
|||||||
widget.onFormDataTypeChanged!(p0);
|
widget.onFormDataTypeChanged!(p0);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
)),
|
),
|
||||||
|
),
|
||||||
onChanged: widget.onChanged,
|
onChanged: widget.onChanged,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Reference in New Issue
Block a user