CameraMain.dart 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. import 'package:camera/camera.dart';
  2. import 'package:camera/new/src/support_android/camera.dart';
  3. import 'package:douyin_demo/providers/CameraProvider.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:provider/provider.dart';
  6. import 'package:path/path.dart' as p;
  7. class CameraPage extends StatelessWidget {
  8. const CameraPage({Key key}) : super(key: key);
  9. @override
  10. Widget build(BuildContext context) {
  11. return Scaffold(
  12. backgroundColor: Theme.of(context).primaryColor,
  13. body: MultiProvider(providers: [
  14. ChangeNotifierProvider(
  15. builder: (_) => CameraProvider(),
  16. )
  17. ], child: CameraMain()),
  18. bottomNavigationBar: BottomAppBar(),
  19. );
  20. }
  21. }
  22. // class CameraMain extends StatefulWidget {
  23. // CameraMain({Key key}) : super(key: key);
  24. // _CameraMainState createState() => _CameraMainState();
  25. // }
  26. // class _CameraMainState extends State<CameraMain> {
  27. // var cameras;
  28. // CameraController _controller;
  29. // @override
  30. // initState() {
  31. // // TODO: implement initState
  32. // super.initState();
  33. // initCamera();
  34. // }
  35. // Future initCamera() async {
  36. // cameras = await availableCameras();
  37. // _controller = CameraController(cameras[0], ResolutionPreset.medium);
  38. // _controller.initialize().then((_) {
  39. // if (!mounted) {
  40. // return;
  41. // }
  42. // setState(() {});
  43. // });
  44. // }
  45. // @override
  46. // void dispose() {
  47. // // TODO: implement dispose
  48. // _controller?.dispose();
  49. // super.dispose();
  50. // }
  51. // @override
  52. // Widget build(BuildContext context) {
  53. // }
  54. // }
  55. class CameraMain extends StatelessWidget {
  56. const CameraMain({Key key}) : super(key: key);
  57. @override
  58. Widget build(BuildContext context) {
  59. CameraProvider provider = Provider.of<CameraProvider>(context);
  60. if (provider == null || provider.cameraController == null) {
  61. return Container(
  62. child: Center(child: CircularProgressIndicator()),
  63. );
  64. }
  65. double rpx = MediaQuery.of(context).size.width / 750;
  66. double toTop = 100 * rpx;
  67. double outBox = 170 * rpx;
  68. double innerBox = 130 * rpx;
  69. CameraController _controller = provider.cameraController;
  70. var cameras = provider.cameras;
  71. if (_controller == null || _controller?.value == null) {
  72. return Container(
  73. child: Center(child: CircularProgressIndicator()),
  74. );
  75. }
  76. final size = MediaQuery.of(context).size;
  77. final deviceRatio = size.width / size.height;
  78. return _controller.value.isInitialized
  79. ? Stack(children: <Widget>[
  80. // Camera.open(cameraId),
  81. Transform.scale(
  82. scale: _controller.value.aspectRatio / deviceRatio,
  83. child: Center(
  84. child: AspectRatio(
  85. aspectRatio: _controller.value.aspectRatio,
  86. child: CameraPreview(_controller),
  87. ),
  88. ),
  89. ),
  90. Positioned(
  91. //顶部关闭按钮
  92. top: toTop,
  93. left: 30 * rpx,
  94. child: IconButton(
  95. icon: Icon(
  96. Icons.close,
  97. color: Colors.white,
  98. size: 60 * rpx,
  99. ),
  100. onPressed: () {
  101. Navigator.pop(context);
  102. },
  103. ),
  104. ),
  105. Positioned(
  106. //选择音乐
  107. top: toTop,
  108. left: 250 * rpx,
  109. child: Container(
  110. width: 250 * rpx,
  111. child: FlatButton(
  112. onPressed: () {},
  113. child: Row(
  114. children: <Widget>[
  115. Icon(
  116. Icons.music_note,
  117. color: Colors.white,
  118. ),
  119. SizedBox(
  120. width: 10 * rpx,
  121. ),
  122. Text(
  123. "选择音乐",
  124. style: TextStyle(color: Colors.white),
  125. ),
  126. ],
  127. ),
  128. ),
  129. ),
  130. ),
  131. Positioned(
  132. //拍照按钮
  133. bottom: 60 * rpx,
  134. // left: (750*rpx-outBox)/2,
  135. child: Container(
  136. width: 750 * rpx,
  137. child: Row(
  138. mainAxisAlignment: MainAxisAlignment.spaceAround,
  139. children: [
  140. IconWithText(
  141. icon: Icon(
  142. Icons.search,
  143. color: Colors.white,
  144. ),
  145. text: "道具"),
  146. CircleTakePhoto(
  147. outBox: outBox,
  148. innerBox: innerBox,
  149. ),
  150. IconWithText(
  151. icon: Icon(
  152. Icons.search,
  153. color: Colors.white,
  154. ),
  155. text: "道具"),
  156. ])),
  157. ),
  158. Positioned(
  159. right: 30 * rpx,
  160. top: 80 * rpx,
  161. child: IconButton(
  162. icon: Icon(Icons.camera_front),
  163. onPressed: () {
  164. provider.changeCamera();
  165. }),
  166. )
  167. ])
  168. : Container();
  169. }
  170. }
  171. class CircleTakePhoto extends StatelessWidget {
  172. const CircleTakePhoto(
  173. {Key key, @required this.outBox, @required this.innerBox})
  174. : super(key: key);
  175. final double outBox;
  176. final double innerBox;
  177. @override
  178. Widget build(BuildContext context) {
  179. double rpx = MediaQuery.of(context).size.width / 750;
  180. CameraProvider provider = Provider.of<CameraProvider>(context);
  181. // double outBox=160*rpx;
  182. // double innerBox=130*rpx;
  183. return Container(
  184. width: outBox,
  185. height: outBox,
  186. padding: EdgeInsets.all(10 * rpx),
  187. decoration: BoxDecoration(
  188. color: Colors.transparent,
  189. borderRadius: BorderRadius.circular(90 * rpx),
  190. border: Border.all(
  191. width: 10 * rpx, color: Color.fromARGB(128, 219, 48, 85)),
  192. ),
  193. child: FlatButton(
  194. padding: EdgeInsets.all(0),
  195. onPressed: () async {
  196. provider.changeFileName();
  197. print(provider.fileName);
  198. await provider.cameraController.takePicture(provider.fileName);
  199. },
  200. child: Container(
  201. width: innerBox,
  202. height: innerBox,
  203. alignment: Alignment.center,
  204. decoration: BoxDecoration(
  205. color: Color.fromARGB(255, 219, 48, 85),
  206. borderRadius: BorderRadius.circular(75 * rpx)),
  207. )
  208. ),
  209. );
  210. }
  211. }
  212. class IconWithText extends StatelessWidget {
  213. const IconWithText({Key key, @required this.icon, @required this.text})
  214. : super(key: key);
  215. final Icon icon;
  216. final String text;
  217. @override
  218. Widget build(BuildContext context) {
  219. return Column(
  220. children: <Widget>[
  221. icon,
  222. Text(
  223. text,
  224. style: TextStyle(color: Colors.white),
  225. )
  226. ],
  227. );
  228. }
  229. }