-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.dart
205 lines (196 loc) · 7.64 KB
/
video.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// import 'package:flutter/material.dart';
// import 'package:get/get.dart';
// import 'package:video_player/video_player.dart';
// import '../Functions/fileDownload.dart';
// class Video extends StatefulWidget {
// const Video(
// {super.key,
// required this.data,
// required this.carouselController,
// required this.closer});
// final StoriesJson data;
// final InfiniteScrollController carouselController;
// final bool closer;
// @override
// VideoState createState() => VideoState();
// }
// class VideoState extends State<Video> {
// late VideoPlayerController _controller;
// late FileDownload downloadController;
// late double _progressValue;
// bool isMusicOn = true;
// @override
// void initState() {
// super.initState();
// _progressValue = 0.0;
// _controller = VideoPlayerController.networkUrl(Uri.parse(
// widget.data.storie.isNotEmpty ? widget.data.storie : widget.data.img));
// downloadController = Get.put(FileDownload());
// }
// Future<bool> started() async {
// await _controller.initialize();
// await _controller.play();
// return true;
// }
// @override
// Widget build(BuildContext context) {
// return SafeArea(
// child: Center(
// child: Scaffold(
// extendBodyBehindAppBar: true,
// appBar: PreferredSize(
// preferredSize: const Size.fromHeight(kToolbarHeight + 80),
// child: Column(
// mainAxisSize: MainAxisSize.min,
// children: [
// Container(
// margin: const EdgeInsets.only(top: 35),
// ),
// const Padding(padding: EdgeInsets.only(top: 10, right: 5)),
// AppBar(
// flexibleSpace: Padding(
// padding: const EdgeInsets.all(10),
// child: ClipRRect(
// borderRadius: const BorderRadius.all(Radius.circular(10)),
// child: TweenAnimationBuilder(
// tween: Tween<double>(begin: 0, end: _progressValue),
// duration: const Duration(milliseconds: 500),
// builder: (context, value, child) {
// return LinearProgressIndicator(
// minHeight: 5,
// backgroundColor: Colors.white24,
// valueColor: const AlwaysStoppedAnimation<Color>(
// Colors.white),
// value: value,
// );
// },
// ),
// ),
// ),
// backgroundColor: Colors.transparent,
// shadowColor: Colors.transparent,
// title: const Text('',
// style: TextStyle(color: Colors.white, fontSize: 5)),
// toolbarHeight: 80,
// actions: <Widget>[
// IconButton(
// iconSize: 25,
// icon: Icon(
// _controller.value.isPlaying
// ? Icons.pause
// : Icons.play_arrow,
// color: Colors.white,
// ),
// tooltip: "Play/Pause",
// onPressed: () {
// setState(() {
// _controller.value.isPlaying
// ? _controller.pause()
// : _controller.play();
// });
// },
// ),
// IconButton(
// iconSize: 25,
// icon: Icon(
// isMusicOn ? Icons.volume_up : Icons.volume_off,
// color: Colors.white,
// ),
// tooltip: "Volume",
// onPressed: () {
// setState(() {
// isMusicOn
// ? _controller.setVolume(0.0)
// : _controller.setVolume(1.0);
// isMusicOn = !isMusicOn;
// });
// },
// ),
// IconButton(
// iconSize: 25,
// icon: const Icon(
// Icons.download,
// color: Colors.white,
// ),
// tooltip: "Download",
// onPressed: () {
// downloadController.downloadFile(
// widget.data.storie,
// widget.data.storie.split('?').first.split('/').last,
// widget.data.img);
// },
// ),
// ],
// ),
// ],
// ),
// ),
// body: Center(
// child: Container(
// padding: const EdgeInsets.only(top: 0),
// child: FutureBuilder<bool>(
// future: started(),
// builder: (BuildContext context, AsyncSnapshot<bool> snapshot) {
// if (snapshot.data ?? false) {
// return GestureDetector(
// onTap: () {
// setState(() {
// _controller.value.isPlaying
// ? _controller.pause()
// : _controller.play();
// });
// },
// child: AspectRatio(
// aspectRatio: _controller.value.aspectRatio,
// child: VideoPlayer(_controller),
// ));
// } else {
// return Image.network(
// widget.data.img,
// fit: BoxFit.fill,
// loadingBuilder: (BuildContext context, Widget child,
// ImageChunkEvent? loadingProgress) {
// if (loadingProgress == null) return child;
// return Center(
// child: CircularProgressIndicator(
// value: loadingProgress.expectedTotalBytes != null
// ? loadingProgress.cumulativeBytesLoaded /
// loadingProgress.expectedTotalBytes!
// : null,
// ),
// );
// },
// );
// }
// },
// ),
// ),
// ),
// ),
// ),
// );
// }
// void checkVideo() {
// if (_controller.value.isInitialized &&
// _controller.value.duration.inSeconds > 0) {
// setState(() {
// _progressValue = _controller.value.position.inSeconds /
// _controller.value.duration.inSeconds;
// });
// }
// if (_controller.value.isCompleted) {
// if (widget.closer) {
// _controller.removeListener(checkVideo);
// Navigator.of(context).pop();
// } else {
// widget.carouselController.nextItem();
// }
// }
// }
// @override
// void dispose() {
// _controller.dispose();
// downloadController.dispose();
// super.dispose();
// }
// }