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 {
109109
110110class _FeedThreeState extends State <FeedThreePage > {
111111 Widget _left () => Container (
112- padding : EdgeInsets .only (
112+ margin : EdgeInsets .only (
113113 top: SizeUtil .getAxisY (67 ),
114114 left: SizeUtil .getAxisX (22 ),
115115 ),
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,
120125 ),
121126 );
122127
@@ -364,7 +369,7 @@ class _FeedThreeState extends State<FeedThreePage> {
364369 decoration: BoxDecoration (gradient: GradientUtil .yellowBlue ()),
365370 child: Stack (
366371 children: < Widget > [
367- // _left(),
372+ _left (),
368373 _list (),
369374 ],
370375 ),
You can’t perform that action at this time.
0 commit comments