垂直方向错位
zysc8313 opened this issue · comments
zysc8313 commented
你好
前缀是中文时候,垂直方向有错位
AnimatedFlipCounter(
value: 100,
prefix: '中文: ',
textStyle: TextStyle(
fontSize: 10.0,
),
);
Bradley Wang commented
Cannot reproduce.
Code:
AnimatedFlipCounter(
value: 100,
prefix: '中文: ',
textStyle: TextStyle(
fontSize: 10.0,
),
),
AnimatedFlipCounter(
value: _value,
prefix: "中文:",
textStyle: TextStyle(
fontSize: 80,
fontWeight: FontWeight.bold,
letterSpacing: -8.0,
color: Colors.yellow,
shadows: [
BoxShadow(
color: Colors.orange,
offset: Offset(2, 4),
blurRadius: 4,
),
],
),
),
zysc8313 commented
Bradley Wang commented