CameraMain.dart 5.8 KB

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