CameraMain.dart 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. import 'dart:io';
  2. import 'package:camera/camera.dart';
  3. import 'package:douyin_demo/providers/CameraProvider.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:image_gallery_saver/image_gallery_saver.dart';
  6. import 'package:provider/provider.dart';
  7. import 'package:path/path.dart' as p;
  8. import 'package:image_picker_saver/image_picker_saver.dart';
  9. import 'dart:core';
  10. class CameraPage extends StatelessWidget {
  11. const CameraPage({Key key}) : super(key: key);
  12. @override
  13. Widget build(BuildContext context) {
  14. double rpx = MediaQuery.of(context).size.width / 750;
  15. return MultiProvider(
  16. providers: [ChangeNotifierProvider(builder: (_) => CameraProvider())],
  17. child: Scaffold(
  18. backgroundColor: Theme.of(context).primaryColor,
  19. body: CameraMain(),
  20. // bottomNavigationBar: SafeArea(
  21. // child: Container(
  22. // height: 100*rpx,
  23. // child: BottomTab()
  24. // )
  25. // ),
  26. ));
  27. }
  28. }
  29. // class CameraMain extends StatefulWidget {
  30. // CameraMain({Key key}) : super(key: key);
  31. // _CameraMainState createState() => _CameraMainState();
  32. // }
  33. // class _CameraMainState extends State<CameraMain> {
  34. // var cameras;
  35. // CameraController _controller;
  36. // @override
  37. // initState() {
  38. // // TODO: implement initState
  39. // super.initState();
  40. // initCamera();
  41. // }
  42. // Future initCamera() async {
  43. // cameras = await availableCameras();
  44. // _controller = CameraController(cameras[0], ResolutionPreset.medium);
  45. // _controller.initialize().then((_) {
  46. // if (!mounted) {
  47. // return;
  48. // }
  49. // setState(() {});
  50. // });
  51. // }
  52. // @override
  53. // void dispose() {
  54. // // TODO: implement dispose
  55. // _controller?.dispose();
  56. // super.dispose();
  57. // }
  58. // @override
  59. // Widget build(BuildContext context) {
  60. // }
  61. // }
  62. class CameraMain extends StatelessWidget {
  63. const CameraMain({Key key}) : super(key: key);
  64. @override
  65. Widget build(BuildContext context) {
  66. CameraProvider provider = Provider.of<CameraProvider>(context);
  67. if (provider == null || provider.cameraController == null) {
  68. return Container(
  69. child: Center(child: CircularProgressIndicator()),
  70. );
  71. }
  72. double rpx = MediaQuery.of(context).size.width / 750;
  73. double toTop = 100 * rpx;
  74. double outBox = 170 * rpx;
  75. double innerBox = 130 * rpx;
  76. CameraController _controller = provider.cameraController;
  77. var cameras = provider.cameras;
  78. if (_controller == null || _controller?.value == null) {
  79. return Container(
  80. child: Center(child: CircularProgressIndicator()),
  81. );
  82. }
  83. final size = MediaQuery.of(context).size;
  84. return _controller.value.isInitialized
  85. ? Stack(children: <Widget>[
  86. ClipRect(
  87. child: Transform.scale(
  88. scale: _controller.value.aspectRatio / size.aspectRatio,
  89. child: Center(
  90. child: AspectRatio(
  91. aspectRatio: _controller.value.aspectRatio,
  92. child: CameraPreview(_controller),
  93. ),
  94. ),
  95. )),
  96. Positioned(
  97. //顶部关闭按钮
  98. top: toTop,
  99. left: 30 * rpx,
  100. child: IconButton(
  101. icon: Icon(
  102. Icons.close,
  103. color: Colors.white,
  104. size: 60 * rpx,
  105. ),
  106. onPressed: () {
  107. Navigator.pop(context);
  108. },
  109. ),
  110. ),
  111. Positioned(
  112. //选择音乐
  113. top: toTop,
  114. left: 250 * rpx,
  115. child: Container(
  116. width: 250 * rpx,
  117. child: FlatButton(
  118. onPressed: () {},
  119. child: Row(
  120. children: <Widget>[
  121. Icon(
  122. Icons.music_note,
  123. color: Colors.white,
  124. ),
  125. SizedBox(
  126. width: 10 * rpx,
  127. ),
  128. Text(
  129. "选择音乐",
  130. style: TextStyle(color: Colors.white),
  131. ),
  132. ],
  133. ),
  134. ),
  135. ),
  136. ),
  137. Positioned(
  138. //拍照按钮
  139. bottom: 100 * rpx,
  140. // left: (750*rpx-outBox)/2,
  141. child: Container(
  142. width: 750 * rpx,
  143. child: Row(
  144. mainAxisAlignment: MainAxisAlignment.spaceAround,
  145. children: [
  146. provider.ifMakeVideo
  147. ? Container(width: 80*rpx,)
  148. : IconWithText(
  149. icon: Icon(
  150. Icons.search,
  151. color: Colors.white,
  152. ),
  153. text: "道具"),
  154. AnimatedSwitcher(
  155. duration: Duration(milliseconds: 300),
  156. child: provider.ifMakeVideo
  157. ? VideoButtonAnim(
  158. provider: provider,
  159. rpx: rpx,
  160. outWidth: outBox,
  161. innerWidth: innerBox - 40 * rpx,
  162. )
  163. : CircleTakePhoto(
  164. outBox: outBox,
  165. innerBox: innerBox,
  166. ),
  167. ),
  168. provider.ifMakeVideo
  169. ? Container(
  170. child: IconButton(
  171. padding: EdgeInsets.all(0),
  172. icon: Icon(
  173. Icons.check_circle,
  174. color: Color.fromARGB(128, 219, 48, 85),
  175. size: 80*rpx,
  176. ),
  177. onPressed: () async {
  178. provider.cameraController
  179. .stopVideoRecording();
  180. // await ImagePickerSaver.saveFile(
  181. // fileData: File(provider.fileName)
  182. // .readAsBytesSync());
  183. await ImageGallerySaver.saveFile(provider.fileName);
  184. File(provider.fileName).deleteSync();
  185. provider.changePhotoWidget();
  186. },
  187. ),
  188. )
  189. : IconWithText(
  190. icon: Icon(
  191. Icons.search,
  192. color: Colors.white,
  193. ),
  194. text: "道具"),
  195. ])),
  196. ),
  197. Positioned(
  198. right: 30 * rpx,
  199. top: 80 * rpx,
  200. child: IconButton(
  201. icon: Icon(Icons.camera_front),
  202. onPressed: () {
  203. provider.changeCamera();
  204. }),
  205. ),
  206. provider.ifMakeVideo//底部导航栏
  207. ? Container()
  208. : Positioned(
  209. bottom: 0,
  210. left: 0,
  211. child: ScrollTabBar(
  212. rpx: rpx,
  213. ),
  214. )
  215. ])
  216. : Container();
  217. }
  218. }
  219. class ScrollTabBar extends StatefulWidget {
  220. ScrollTabBar({Key key, @required this.rpx}) : super(key: key);
  221. final double rpx;
  222. _ScrollTabBarState createState() => _ScrollTabBarState();
  223. }
  224. class _ScrollTabBarState extends State<ScrollTabBar>
  225. with AutomaticKeepAliveClientMixin {
  226. double curCenter = 0;
  227. ScrollController controller;
  228. List<String> items = ['拍照', '拍15秒', '拍60秒', '影集', '直播'];
  229. double eachWidth;
  230. double eachSide;
  231. double rpx;
  232. double maxPos;
  233. double minPos;
  234. double startDx = 0;
  235. double finalDx = 0;
  236. int curIndex = 2;
  237. @override
  238. void initState() {
  239. super.initState();
  240. rpx = widget.rpx;
  241. eachWidth = 130 * rpx;
  242. eachSide = (750 - eachWidth / rpx) / 2 * rpx;
  243. curCenter = curIndex * eachWidth;
  244. maxPos = eachWidth * items.length;
  245. minPos = 0;
  246. controller = ScrollController(initialScrollOffset: curCenter);
  247. }
  248. moveToItem(index) {
  249. controller.animateTo(index * eachWidth,
  250. duration: Duration(milliseconds: 200), curve: Curves.linearToEaseOut);
  251. setState(() {
  252. curCenter = index * eachWidth;
  253. curIndex = index;
  254. });
  255. }
  256. @override
  257. Widget build(BuildContext context) {
  258. return Listener(
  259. onPointerDown: (result) {
  260. setState(() {
  261. startDx = result.position.dx;
  262. });
  263. },
  264. onPointerUp: (result) {
  265. finalDx = result.position.dx;
  266. double finalPosition = curCenter + startDx - finalDx;
  267. int index = (finalPosition / eachWidth).floor();
  268. // print('curCenter=$index,moveTo:$index');
  269. moveToItem(index);
  270. },
  271. child: Container(
  272. width: 750 * rpx,
  273. child: Column(children: [
  274. SingleChildScrollView(
  275. scrollDirection: Axis.horizontal,
  276. controller: controller,
  277. child: Column(
  278. mainAxisAlignment: MainAxisAlignment.start,
  279. mainAxisSize: MainAxisSize.min,
  280. children: [
  281. Row(
  282. children: <Widget>[
  283. Container(
  284. width: eachSide,
  285. ),
  286. Row(
  287. children: List.generate(
  288. items.length,
  289. (index) => Container(
  290. width: eachWidth,
  291. child: FlatButton(
  292. padding: EdgeInsets.all(0),
  293. child: Text(
  294. items[index],
  295. style: TextStyle(
  296. fontSize: 28 * rpx,
  297. color: curIndex == index
  298. ? Colors.white
  299. : Colors.white
  300. .withOpacity(0.3)),
  301. ),
  302. onPressed: () {
  303. moveToItem(index);
  304. },
  305. ),
  306. )),
  307. ),
  308. Container(
  309. width: eachSide,
  310. ),
  311. ],
  312. ),
  313. ]),
  314. ),
  315. Container(
  316. height: 8 * rpx,
  317. width: 750 * rpx,
  318. child: Center(
  319. child: Container(
  320. decoration: BoxDecoration(
  321. shape: BoxShape.circle, color: Colors.white),
  322. )),
  323. ),
  324. SizedBox(
  325. height: 10 * rpx,
  326. )
  327. ])));
  328. }
  329. @override
  330. // TODO: implement wantKeepAlive
  331. bool get wantKeepAlive => true;
  332. }
  333. class VideoButtonAnim extends StatefulWidget {
  334. VideoButtonAnim(
  335. {Key key,
  336. @required this.rpx,
  337. @required this.outWidth,
  338. @required this.innerWidth,
  339. @required this.provider})
  340. : super(key: key);
  341. final double rpx;
  342. final double outWidth;
  343. final double innerWidth;
  344. final CameraProvider provider;
  345. _VideoButtonAnimState createState() => _VideoButtonAnimState();
  346. }
  347. class _VideoButtonAnimState extends State<VideoButtonAnim>
  348. with TickerProviderStateMixin {
  349. double extraPadding = 0; //内外圆之间距离
  350. double borderWidth = 0;
  351. double outWidth = 0;
  352. double innerWidth = 0;
  353. double minDist = 0;
  354. double rpx = 0;
  355. Animation<double> animation;
  356. AnimationController controller;
  357. CameraProvider provider;
  358. bool ifPauseVideo = false;
  359. @override
  360. void dispose() {
  361. // TODO: implement dispose
  362. controller.dispose();
  363. super.dispose();
  364. }
  365. @override
  366. void initState() {
  367. super.initState();
  368. rpx = widget.rpx;
  369. outWidth = widget.outWidth;
  370. innerWidth = widget.innerWidth;
  371. provider = widget.provider;
  372. minDist = 10 * rpx;
  373. extraPadding = (outWidth - innerWidth) / 2 - borderWidth;
  374. borderWidth = 15 * rpx;
  375. controller =
  376. AnimationController(duration: Duration(milliseconds: 800), vsync: this);
  377. animation =
  378. Tween(begin: (outWidth - innerWidth) / 2 - borderWidth, end: minDist)
  379. .animate(controller)
  380. ..addListener(() {
  381. setState(() {
  382. borderWidth = animation.value;
  383. extraPadding = (outWidth - innerWidth) / 2 - animation.value;
  384. });
  385. });
  386. controller.repeat(reverse: true);
  387. // controller.forward(from: 0.0).then((f){
  388. // controller.reverse(from: 1.0);
  389. // });
  390. }
  391. pauseAnimation() {
  392. controller.reset();
  393. provider.cameraController.pauseVideoRecording();
  394. setState(() {
  395. ifPauseVideo = true;
  396. });
  397. }
  398. playAnimation() {
  399. controller.repeat(reverse: true);
  400. provider.cameraController.resumeVideoRecording();
  401. setState(() {
  402. ifPauseVideo = false;
  403. });
  404. }
  405. @override
  406. Widget build(BuildContext context) {
  407. return Container(
  408. width: outWidth,
  409. height: outWidth,
  410. decoration: BoxDecoration(
  411. shape: BoxShape.circle,
  412. border: Border.all(
  413. width: borderWidth, color: Color.fromARGB(128, 219, 48, 85))),
  414. padding: EdgeInsets.all(extraPadding),
  415. child: Center(
  416. child: Container(
  417. width: innerWidth,
  418. height: innerWidth,
  419. // decoration: BoxDecoration(
  420. // color: Color.fromARGB(255, 219, 48, 85),
  421. // borderRadius: BorderRadius.circular(20 * rpx)),
  422. child: ifPauseVideo
  423. ? IconButton(
  424. padding: EdgeInsets.all(0),
  425. icon: Icon(
  426. Icons.pause_circle_filled,
  427. size: innerWidth,
  428. color: Color.fromARGB(255, 219, 48, 85),
  429. ),
  430. onPressed: () {
  431. playAnimation();
  432. },
  433. )
  434. : IconButton(
  435. padding: EdgeInsets.all(0),
  436. icon: Icon(
  437. Icons.play_circle_filled,
  438. size: innerWidth,
  439. color: Color.fromARGB(255, 219, 48, 85),
  440. ),
  441. onPressed: () {
  442. pauseAnimation();
  443. },
  444. ),
  445. ),
  446. ),
  447. );
  448. }
  449. }
  450. class CircleTakePhoto extends StatelessWidget {
  451. const CircleTakePhoto(
  452. {Key key, @required this.outBox, @required this.innerBox})
  453. : super(key: key);
  454. final double outBox;
  455. final double innerBox;
  456. @override
  457. Widget build(BuildContext context) {
  458. double rpx = MediaQuery.of(context).size.width / 750;
  459. CameraProvider provider = Provider.of<CameraProvider>(context);
  460. // double outBox=160*rpx;
  461. // double innerBox=130*rpx;
  462. return Container(
  463. width: outBox,
  464. height: outBox,
  465. padding: EdgeInsets.all(10 * rpx),
  466. decoration: BoxDecoration(
  467. color: Colors.transparent,
  468. borderRadius: BorderRadius.circular(90 * rpx),
  469. border: Border.all(
  470. width: 10 * rpx, color: Color.fromARGB(128, 219, 48, 85)),
  471. ),
  472. child: FlatButton(
  473. padding: EdgeInsets.all(0),
  474. onPressed: () async {
  475. // provider.changeFileName();
  476. // print(provider.fileName);
  477. // await provider.cameraController
  478. // .takePicture(provider.fileName)
  479. // .then((_) {
  480. // // Navigator.push(context, MaterialPageRoute(fullscreenDialog: true,builder: (_){
  481. // // return Image.file(File(provider.fileName) );
  482. // // }));
  483. // ImagePickerSaver.saveFile(
  484. // fileData: File(provider.fileName).readAsBytesSync());
  485. // File(provider.fileName).deleteSync();
  486. // });
  487. provider.changePhotoWidget();
  488. provider.changeFileName('mp4');
  489. provider.cameraController.startVideoRecording(provider.fileName);
  490. },
  491. child: Container(
  492. width: innerBox,
  493. height: innerBox,
  494. alignment: Alignment.center,
  495. decoration: BoxDecoration(
  496. color: Color.fromARGB(255, 219, 48, 85),
  497. borderRadius: BorderRadius.circular(75 * rpx)),
  498. )),
  499. );
  500. }
  501. }
  502. class IconWithText extends StatelessWidget {
  503. const IconWithText({Key key, @required this.icon, @required this.text})
  504. : super(key: key);
  505. final Icon icon;
  506. final String text;
  507. @override
  508. Widget build(BuildContext context) {
  509. return Column(
  510. children: <Widget>[
  511. icon,
  512. Text(
  513. text,
  514. style: TextStyle(color: Colors.white),
  515. )
  516. ],
  517. );
  518. }
  519. }