File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
lib/screens/common_widgets
packages/apidash_design_system/lib/tokens Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ import 'package:apidash/consts.dart' ;
1
2
import 'package:apidash_design_system/apidash_design_system.dart' ;
2
3
import 'package:flutter/material.dart' ;
3
4
import 'package:multi_trigger_autocomplete_plus/multi_trigger_autocomplete_plus.dart' ;
@@ -38,10 +39,8 @@ class EnvCellField extends StatelessWidget {
38
39
clrScheme,
39
40
hintText: hintText,
40
41
isDense: true ,
41
- contentPadding: const EdgeInsets .symmetric (vertical: 9.0 , horizontal: 10.0 ),
42
-
42
+ contentPadding: kIsMobile ? kPh6b12 : null ,
43
43
),
44
-
45
44
autocompleteNoTrigger: autocompleteNoTrigger,
46
45
onChanged: onChanged,
47
46
);
Original file line number Diff line number Diff line change @@ -64,6 +64,11 @@ const kPs0o6 = EdgeInsets.only(
64
64
right: 6 ,
65
65
bottom: 6 ,
66
66
);
67
+ const kPh6b12 = EdgeInsets .only (
68
+ left: 6.0 ,
69
+ right: 6.0 ,
70
+ bottom: 12.0 ,
71
+ );
67
72
const kPh60 = EdgeInsets .symmetric (horizontal: 60 );
68
73
const kPh60v60 = EdgeInsets .symmetric (vertical: 60 , horizontal: 60 );
69
74
const kPt24l4 = EdgeInsets .only (
You can’t perform that action at this time.
0 commit comments