-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
119 lines (107 loc) · 2.91 KB
/
main.dart
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import 'package:cached_s5_audio/cached_s5_audio.dart';
import 'package:cached_s5_audio_exmaple/src/s5.dart';
import 'package:cached_s5_manager/cached_s5_manager.dart';
import 'package:flutter/material.dart';
import 'package:logger/logger.dart';
import 'package:s5/s5.dart';
void main() {
runApp(const Demo());
}
class Demo extends StatelessWidget {
const Demo({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: CachedS5AudioDemo(),
);
}
}
class CachedS5AudioDemo extends StatefulWidget {
const CachedS5AudioDemo({super.key});
@override
State<CachedS5AudioDemo> createState() => _CachedS5AudioDemoState();
}
class _CachedS5AudioDemoState extends State<CachedS5AudioDemo> {
String? cid;
final TextEditingController _cidController = TextEditingController(
text: "z2H7G8Z25ajNkXqn3o1A5Eam7pmdPangcNk2VFViqM993fhxpDhg");
S5? s5;
Logger logger = Logger();
CachedS5Manager? cacheManager;
@override
void initState() {
_initS5();
_initCache();
super.initState();
}
void _initCache() async {
cacheManager?.init();
}
void _initS5() async {
// this is an EXAMPLE s5 node, use your own for maximum performance
s5 = await initS5("https://s5.jptr.tech", "hive", null);
cacheManager = CachedS5Manager(s5: s5!);
setState(() {}); // to update UI
}
void _submitCID() async {
if (s5 != null) {
setState(() {
cid = _cidController.text;
});
}
}
void _clearCache() async {
cacheManager?.clear();
}
void _clearImage() async {
setState(() {
cid = null;
});
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: ListView(
children: [
Row(
children: [
const Text("S5 Status:"),
(s5 == null)
? const CircularProgressIndicator()
: const Icon(Icons.check),
],
),
TextField(
controller: _cidController,
decoration: const InputDecoration(labelText: "CID: z2..."),
),
const SizedBox(
height: 10,
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
ElevatedButton(
onPressed: _submitCID, child: const Text("Submit CID")),
ElevatedButton(
onPressed: _clearCache, child: const Text("Clear Cache")),
ElevatedButton(
onPressed: _clearImage,
child: const Text("Clear loaded audio"))
],
),
const SizedBox(
height: 10,
),
(cid != null && s5 != null)
? CachedS5Audio(
cid: cid!,
s5: s5!,
)
: Container(),
],
),
);
}
}