|
|
@ -382,24 +382,24 @@ class _VoiceItemState extends State<VoiceItem> with TickerProviderStateMixin { |
|
|
// 构建金币标签 |
|
|
// 构建金币标签 |
|
|
Widget _buildCoinLabel(String revenueInfo) { |
|
|
Widget _buildCoinLabel(String revenueInfo) { |
|
|
return Container( |
|
|
return Container( |
|
|
padding: EdgeInsets.symmetric(horizontal: 12.w, vertical: 6.h), |
|
|
|
|
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 6.w, vertical: 3.h), |
|
|
decoration: BoxDecoration( |
|
|
decoration: BoxDecoration( |
|
|
color: Color.fromRGBO(0, 0, 0, 0.05), |
|
|
color: Color.fromRGBO(0, 0, 0, 0.05), |
|
|
borderRadius: BorderRadius.circular(20.w), |
|
|
|
|
|
|
|
|
borderRadius: BorderRadius.circular(12.w), |
|
|
), |
|
|
), |
|
|
child: Row( |
|
|
child: Row( |
|
|
mainAxisSize: MainAxisSize.min, |
|
|
mainAxisSize: MainAxisSize.min, |
|
|
children: [ |
|
|
children: [ |
|
|
Image.asset( |
|
|
Image.asset( |
|
|
Assets.imagesImCoinIcon, |
|
|
Assets.imagesImCoinIcon, |
|
|
width: 16.w, |
|
|
|
|
|
height: 16.w, |
|
|
|
|
|
|
|
|
width: 10.w, |
|
|
|
|
|
height: 10.w, |
|
|
), |
|
|
), |
|
|
SizedBox(width: 4.w), |
|
|
|
|
|
|
|
|
SizedBox(width: 2.w), |
|
|
Text( |
|
|
Text( |
|
|
revenueInfo, |
|
|
revenueInfo, |
|
|
style: TextStyle( |
|
|
style: TextStyle( |
|
|
fontSize: 12.sp, |
|
|
|
|
|
|
|
|
fontSize: 9.sp, |
|
|
color: Color.fromRGBO(255, 132, 0, 1), |
|
|
color: Color.fromRGBO(255, 132, 0, 1), |
|
|
), |
|
|
), |
|
|
), |
|
|
), |
|
|
|