File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
screens/home_page/editor_pane/details_card/request_pane Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,9 @@ const kP8CollectionPane = EdgeInsets.only(
102
102
const kPb10 = EdgeInsets .only (
103
103
bottom: 10 ,
104
104
);
105
+ const kPb15 = EdgeInsets .only (
106
+ bottom: 15 ,
107
+ );
105
108
const kPr8CollectionPane = EdgeInsets .only (right: 8.0 );
106
109
const kpsV5 = EdgeInsets .symmetric (vertical: 2 );
107
110
const kHSpacer4 = SizedBox (width: 4 );
@@ -112,6 +115,7 @@ const kVSpacer5 = SizedBox(height: 5);
112
115
const kVSpacer8 = SizedBox (height: 8 );
113
116
const kVSpacer10 = SizedBox (height: 10 );
114
117
const kVSpacer20 = SizedBox (height: 20 );
118
+ const kVSpacer40 = SizedBox (height: 40 );
115
119
116
120
const kTabAnimationDuration = Duration (milliseconds: 200 );
117
121
const kTabHeight = 45.0 ;
Original file line number Diff line number Diff line change @@ -208,13 +208,14 @@ class _FormDataBodyState extends ConsumerState<FormDataWidget> {
208
208
child: Davi <FormDataModel >(daviModelRows),
209
209
),
210
210
),
211
+ kVSpacer20,
211
212
],
212
213
),
213
214
),
214
215
Align (
215
216
alignment: Alignment .bottomCenter,
216
217
child: Padding (
217
- padding: const EdgeInsets .only (bottom: 30 ),
218
+ padding: const EdgeInsets .only (bottom: 5 ),
218
219
child: ElevatedButton .icon (
219
220
onPressed: () {
220
221
formRows.add (kFormDataEmptyModel);
Original file line number Diff line number Diff line change @@ -182,13 +182,14 @@ class EditRequestHeadersState extends ConsumerState<EditRequestHeaders> {
182
182
child: Davi <NameValueModel >(model),
183
183
),
184
184
),
185
+ kVSpacer40,
185
186
],
186
187
),
187
188
),
188
189
Align (
189
190
alignment: Alignment .bottomCenter,
190
191
child: Padding (
191
- padding: const EdgeInsets . only (bottom : 30 ) ,
192
+ padding: kPb15 ,
192
193
child: ElevatedButton .icon (
193
194
onPressed: () {
194
195
headerRows.add (kNameValueEmptyModel);
Original file line number Diff line number Diff line change @@ -182,13 +182,14 @@ class EditRequestURLParamsState extends ConsumerState<EditRequestURLParams> {
182
182
child: Davi <NameValueModel >(model),
183
183
),
184
184
),
185
+ kVSpacer40,
185
186
],
186
187
),
187
188
),
188
189
Align (
189
190
alignment: Alignment .bottomCenter,
190
191
child: Padding (
191
- padding: const EdgeInsets . only (bottom : 30 ) ,
192
+ padding: kPb15 ,
192
193
child: ElevatedButton .icon (
193
194
onPressed: () {
194
195
paramRows.add (kNameValueEmptyModel);
You can’t perform that action at this time.
0 commit comments