File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -134,8 +134,13 @@ class PickMethod {
134
134
handleResult (context, result);
135
135
}
136
136
},
137
- child: const Center (
138
- child: Icon (Icons .camera_enhance, size: 42.0 ),
137
+ child: Container (
138
+ padding: const EdgeInsets .all (28.0 ),
139
+ color: Theme .of (context).dividerColor,
140
+ child: const FittedBox (
141
+ fit: BoxFit .fill,
142
+ child: Icon (Icons .camera_enhance),
143
+ ),
139
144
),
140
145
),
141
146
);
@@ -191,8 +196,13 @@ class PickMethod {
191
196
);
192
197
p.selectAsset (result);
193
198
},
194
- child: const Center (
195
- child: Icon (Icons .camera_enhance, size: 42.0 ),
199
+ child: Container (
200
+ padding: const EdgeInsets .all (28.0 ),
201
+ color: Theme .of (context).dividerColor,
202
+ child: const FittedBox (
203
+ fit: BoxFit .fill,
204
+ child: Icon (Icons .camera_enhance),
205
+ ),
196
206
),
197
207
),
198
208
);
You can’t perform that action at this time.
0 commit comments