在颤动的文本小部件中显示产品的折扣百分比
show discount percent of product in Text Widget in flutter
我想在 Flutter 中的文本小部件中显示折扣百分比,我使用了折扣计算公式但它没有用,我该怎么做?
这就是我想要的:
Container(
decoration: BoxDecoration(
color: Color(0xfff40725),
borderRadius: BorderRadius.circular(50),
),
child: Padding(
padding: const EdgeInsets.all(5.0),
child: Text(
'50% (but with formula',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold),
),
),
),
您可以使用字符串替换。
Text("${your_formula()}%")
我想在 Flutter 中的文本小部件中显示折扣百分比,我使用了折扣计算公式但它没有用,我该怎么做? 这就是我想要的:
Container(
decoration: BoxDecoration(
color: Color(0xfff40725),
borderRadius: BorderRadius.circular(50),
),
child: Padding(
padding: const EdgeInsets.all(5.0),
child: Text(
'50% (but with formula',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.bold),
),
),
),
您可以使用字符串替换。
Text("${your_formula()}%")