File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
lib/screens/home_page/editor_pane/details_card/request_pane Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
import 'dart:math' ;
2
+ import 'package:apidash/screens/common_widgets/envfield_cell.dart' ;
2
3
import 'package:apidash_core/apidash_core.dart' ;
3
4
import 'package:apidash_design_system/apidash_design_system.dart' ;
4
5
import 'package:flutter/material.dart' ;
@@ -82,7 +83,7 @@ class _FormDataBodyState extends ConsumerState<FormDataWidget> {
82
83
key: ValueKey ("$selectedId -$index -form-row-$seed " ),
83
84
cells: < DataCell > [
84
85
DataCell (
85
- CellField (
86
+ EnvCellField (
86
87
keyId: "$selectedId -$index -form-k-$seed " ,
87
88
initialValue: formRows[index].name,
88
89
hintText: kHintAddFieldName,
@@ -138,7 +139,7 @@ class _FormDataBodyState extends ConsumerState<FormDataWidget> {
138
139
},
139
140
initialValue: formRows[index].value,
140
141
)
141
- : CellField (
142
+ : EnvCellField (
142
143
keyId: "$selectedId -$index -form-v-$seed " ,
143
144
initialValue: formRows[index].value,
144
145
hintText: kHintAddValue,
You can’t perform that action at this time.
0 commit comments