我希望图标details
指向上方,如图所示。
但是材料图标列表的图标details
指向下方,
因此如何在我的flutter项目中旋转材质图标,而无需下载图标图像。
main.dart
Column(
children: <Widget>[
Container(
height: 48,
decoration: BoxDecoration(color: Color(0xFFFBBC05), borderRadius: BorderRadius.circular(48), boxShadow: [
BoxShadow(blurRadius: 16,
offset: Offset(0, 8),
color: Color(0XFFFBBC05),
spreadRadius: -10)
]),
child: IconButton(
icon: Icon(Icons.details, color: Colors.white,),
onPressed: null,
),
),
SizedBox(height: 8,),
Text("Historical", style: TextStyle(fontFamily: 'AirbnbCerealMedium', fontSize: 12),),
],
),
答案 0 :(得分:9)
另一个解决方案是:
RotatedBox(
quarterTurns: 2,
child: IconButton(
icon: Icon(
Icons.details,
color: Colors.white,
),
onPressed: null,
),
),
答案 1 :(得分:2)
您可以使用rotate constructor将IconButton
包装在Transform
小部件中:
Transform.rotate(
angle: 180 * math.pi / 180,
child: IconButton(
icon: Icon(
Icons.details,
color: Colors.white,
),
onPressed: null,
),
),
答案 2 :(得分:1)
一种解决方案是使用Transform
小部件。
Column(
children: <Widget>[
Container(
height: 48,
decoration: BoxDecoration(color: Color(0xFFFBBC05), borderRadius: BorderRadius.circular(48), boxShadow: [
BoxShadow(blurRadius: 16,
offset: Offset(0, 8),
color: Color(0XFFFBBC05),
spreadRadius: -10)
]),
child: Transform( //<--- This changed
transform: Matrix4.rotationX(90),
child: IconButton(icon: Icon(Icons.details), onPressed: () {})),
),
SizedBox(height: 8,),
Text("Historical", style: TextStyle(fontFamily: 'AirbnbCerealMedium', fontSize: 12),),
],
),
答案 3 :(得分:0)
Transform.rotate(
angle: 180 * pi / 180,
child: IconButton(
icon: Icon(
Icons.details,
color: Colors.white,
),
onPressed: null,
),
),
答案 4 :(得分:0)
如果你想旋转像 arrow_forward_ios 这样的图标,可以帮助以下代码。
icon: Transform.rotate(
angle: 90 *math.pi /180,
child: Icon(Icons.arrow_forward_ios,
color: Colors.white,size: 18,),,