1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
import 'package:flutter/material.dart';
class WakeWordRecording extends StatefulWidget {
@override
WakeWordRecordingState createState() => WakeWordRecordingState();
}
class WakeWordRecordingState extends State<WakeWordRecording>
with SingleTickerProviderStateMixin {
late AnimationController _controller;
late Animation<double> _bounceAnimation;
@override
void initState() {
super.initState();
// Create an animation controller
_controller = AnimationController(
vsync: this,
duration: Duration(milliseconds: 500), // Adjust the duration as needed
);
// Create a bounce animation
_bounceAnimation = Tween<double>(
begin: 0,
end: 10,
).animate(CurvedAnimation(
parent: _controller,
curve: Curves.easeInOut,
));
// Start the animation
_controller.repeat(reverse: true);
}
@override
void dispose() {
_controller.dispose(); // Dispose of the animation controller
super.dispose();
}
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
AnimatedBuilder(
animation: _controller,
builder: (context, child) {
return Transform.translate(
offset: Offset(0, _bounceAnimation.value),
child: Icon(
Icons.mic, // Replace with your recording icon
size: 60,
color: Colors.redAccent,
),
);
},
),
SizedBox(height: 8),
Text(
'Recording...',
style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
],
);
}
}
|