Browse Source

优化价格展示

master
王子贤 3 months ago
parent
commit
63df93c310
1 changed files with 1 additions and 1 deletions
  1. 2
      lib/widget/live/live_room_pay_item.dart

2
lib/widget/live/live_room_pay_item.dart

@ -70,7 +70,7 @@ class _LiveRoomPayItemState extends State<LiveRoomPayItem> {
),
),
Text(
"${(widget.item["price"] as num?)?.toStringAsFixed(0) ?? '0.0'}",
"${(widget.item["price"])?.toStringAsFixed(2) ?? '0.00'}",
style: TextStyle(
fontSize: 11.w,
color: const Color.fromRGBO(144, 144, 144, 1),

Loading…
Cancel
Save