File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -109,14 +109,19 @@ class FeedThreePage extends StatefulWidget {
109
109
110
110
class _FeedThreeState extends State <FeedThreePage > {
111
111
Widget _left () => Container (
112
- padding : EdgeInsets .only (
112
+ margin : EdgeInsets .only (
113
113
top: SizeUtil .getAxisY (67 ),
114
114
left: SizeUtil .getAxisX (22 ),
115
115
),
116
- child: Image .asset (
117
- FeedImage .FEED_3_PIC_LEFT ,
118
- height: SizeUtil .getAxisBoth (90 ),
119
- width: SizeUtil .getAxisBoth (90 ),
116
+ height: SizeUtil .getAxisBoth (100 ),
117
+ width: SizeUtil .getAxisBoth (100 ),
118
+ decoration: BoxDecoration (
119
+ image: DecorationImage (
120
+ image: AssetImage (
121
+ FeedImage .FEED_3_PIC_LEFT ,
122
+ ),
123
+ fit: BoxFit .cover),
124
+ shape: BoxShape .circle,
120
125
),
121
126
);
122
127
@@ -364,7 +369,7 @@ class _FeedThreeState extends State<FeedThreePage> {
364
369
decoration: BoxDecoration (gradient: GradientUtil .yellowBlue ()),
365
370
child: Stack (
366
371
children: < Widget > [
367
- // _left(),
372
+ _left (),
368
373
_list (),
369
374
],
370
375
),
You can’t perform that action at this time.
0 commit comments