|
|
@ -197,38 +197,43 @@ class _FeaturedActivity extends State<FeaturedActivity> { |
|
|
|
], |
|
|
|
], |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
Container( |
|
|
|
Row( |
|
|
|
width: 48.w, |
|
|
|
children: [ |
|
|
|
margin: EdgeInsets.only(left: 8, bottom: 8), |
|
|
|
Container( |
|
|
|
padding: EdgeInsets.symmetric( |
|
|
|
// width: 52.w, |
|
|
|
vertical: 4.h, |
|
|
|
margin: EdgeInsets.only(left: 8, bottom: 8), |
|
|
|
horizontal: 8.w, |
|
|
|
padding: EdgeInsets.symmetric( |
|
|
|
), |
|
|
|
vertical: 4.h, |
|
|
|
decoration: BoxDecoration( |
|
|
|
horizontal: 8.w, |
|
|
|
color: Color(0xFF32A060), |
|
|
|
|
|
|
|
borderRadius: BorderRadius.circular(20), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
alignment: Alignment.center, |
|
|
|
|
|
|
|
child: Row( |
|
|
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center, |
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center, |
|
|
|
|
|
|
|
children: [ |
|
|
|
|
|
|
|
Text( |
|
|
|
|
|
|
|
"了解", |
|
|
|
|
|
|
|
style: TextStyle( |
|
|
|
|
|
|
|
fontSize: 10.sp, |
|
|
|
|
|
|
|
fontWeight: MyFontWeight.medium, |
|
|
|
|
|
|
|
color: Colors.white, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
Icon( |
|
|
|
decoration: BoxDecoration( |
|
|
|
Icons.keyboard_arrow_right, |
|
|
|
color: Color(0xFF32A060), |
|
|
|
color: Colors.white, |
|
|
|
borderRadius: BorderRadius.circular(20), |
|
|
|
size: 12, |
|
|
|
|
|
|
|
), |
|
|
|
), |
|
|
|
], |
|
|
|
alignment: Alignment.center, |
|
|
|
), |
|
|
|
child: Row( |
|
|
|
), |
|
|
|
mainAxisAlignment: MainAxisAlignment.center, |
|
|
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center, |
|
|
|
|
|
|
|
children: [ |
|
|
|
|
|
|
|
Text( |
|
|
|
|
|
|
|
"了解", |
|
|
|
|
|
|
|
style: TextStyle( |
|
|
|
|
|
|
|
fontSize: 10.sp, |
|
|
|
|
|
|
|
fontWeight: MyFontWeight.medium, |
|
|
|
|
|
|
|
color: Colors.white, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
Icon( |
|
|
|
|
|
|
|
Icons.keyboard_arrow_right, |
|
|
|
|
|
|
|
color: Colors.white, |
|
|
|
|
|
|
|
size: 12, |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
], |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
|
|
|
|
Spacer() |
|
|
|
|
|
|
|
], |
|
|
|
|
|
|
|
) |
|
|
|
], |
|
|
|
], |
|
|
|
)); |
|
|
|
)); |
|
|
|
} |
|
|
|
} |
|
|
|