gpt4 book ai didi

flutter - 如何使用 Flutter AnimationController 和 Transform 旋转图像?

转载 作者:IT王子 更新时间:2023-10-29 07:07:22 25 4
gpt4 key购买 nike

我有星星 png 图片,我需要使用 Flutter AnimationController 和 Transformer 旋转星星。我找不到图像旋转动画的任何文档或示例。

知道如何使用 Flutter AnimationController 和 Transform 旋转图像吗?

更新:

class _MyHomePageState extends State<MyHomePage>  with TickerProviderStateMixin {

AnimationController animationController;

@override
void initState() {
super.initState();
animationController = new AnimationController(
vsync: this,
duration: new Duration(milliseconds: 5000),
);
animationController.forward();
animationController.addListener(() {
setState(() {
if (animationController.status == AnimationStatus.completed) {
animationController.repeat();
}
});
});
}

@override
Widget build(BuildContext context) {
return new Container(
alignment: Alignment.center,
color: Colors.white,
child: new AnimatedBuilder(
animation: animationController,
child: new Container(
height: 80.0,
width: 80.0,
child: new Image.asset('images/StarLogo.png'),
),
builder: (BuildContext context, Widget _widget) {
return new Transform.rotate(
angle: animationController.value,
child: _widget,
);
},
),
);
}
}

最佳答案

完整示例(空安全):

Demo Screenshot

按“开始”使星形图标旋转,直到您按“停止”。

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHomePage(),
);
}
}

class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage>
with SingleTickerProviderStateMixin {
late AnimationController _controller;

@override
void initState() {
_controller = AnimationController(
duration: const Duration(milliseconds: 5000),
vsync: this,
);
super.initState();
}

@override
void dispose() {
_controller.dispose();
super.dispose();
}

@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Demo"),
),
body: Center(
child: Column(
children: <Widget>[
RotationTransition(
turns: Tween(begin: 0.0, end: 1.0).animate(_controller),
child: Icon(Icons.stars),
),
ElevatedButton(
child: Text("go"),
onPressed: () => _controller.forward(),
),
ElevatedButton(
child: Text("reset"),
onPressed: () => _controller.reset(),
),
],
),
),
);
}
}

分步指南:

首先,让您的小部件状态类实现SingleTickerProviderStateMixin

其次,定义一个 AnimationController 并且不要忘记释放它。如果您尚未使用 null-safe,请删除 late 关键字。

late AnimationController _controller;

@override
void initState() {
_controller = AnimationController(
duration: const Duration(milliseconds: 5000),
vsync: this,
);
super.initState();
}

@override
void dispose() {
_controller.dispose();
super.dispose();
}

然后用 RotationTransition 包裹你的 Widget

RotationTransition(
turns: Tween(begin: 0.0, end: 1.0).animate(_controller),
child: Icon(Icons.stars),
),

最后,调用 AnimationController 上的方法来开始/停止动画。

  • 运行一次动画,使用.forward
  • 循环播放动画,使用.repeat
  • 立即停止,使用.stop
  • 停止并将其设置回原始旋转,使用 .reset
  • 停止并动画到旋转值,使用 .animateTo

关于flutter - 如何使用 Flutter AnimationController 和 Transform 旋转图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53745546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com