123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- import 'package:camera/camera.dart';
- import 'package:camera/new/src/support_android/camera.dart';
- import 'package:flutter/material.dart';
- class CameraPage extends StatelessWidget {
- const CameraPage({Key key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- backgroundColor: Theme.of(context).primaryColor,
- body: CameraMain(),
- bottomNavigationBar: BottomAppBar(),
- );
- }
- }
- class CameraMain extends StatefulWidget {
- CameraMain({Key key}) : super(key: key);
- _CameraMainState createState() => _CameraMainState();
- }
- class _CameraMainState extends State<CameraMain> {
- var cameras;
- CameraController _controller;
- @override
- initState() {
- // TODO: implement initState
- super.initState();
- initCamera();
- }
- Future initCamera() async {
- cameras = await availableCameras();
- _controller = CameraController(cameras[0], ResolutionPreset.medium);
- _controller.initialize().then((_) {
- if (!mounted) {
- return;
- }
- setState(() {});
- });
- }
- @override
- void dispose() {
- // TODO: implement dispose
- _controller?.dispose();
- super.dispose();
- }
- @override
- Widget build(BuildContext context) {
- double rpx = MediaQuery.of(context).size.width / 750;
- double toTop = 100 * rpx;
- double outBox = 170 * rpx;
- double innerBox = 130 * rpx;
- if (_controller == null || _controller?.value == null) {
- return Container(
- child: Center(child: CircularProgressIndicator()),
- );
- }
- return _controller.value.isInitialized
- ? Stack(children: <Widget>[
- // Camera.open(cameraId),
- CameraPreview(_controller),
- Positioned(
- //顶部关闭按钮
- top: toTop,
- left: 30 * rpx,
- child: IconButton(
- icon: Icon(
- Icons.close,
- color: Colors.white,
- size: 60 * rpx,
- ),
- onPressed: () {
- Navigator.pop(context);
- },
- ),
- ),
- Positioned(
- //选择音乐
- top: toTop,
- left: 250 * rpx,
- child: Container(
- width: 250 * rpx,
- child: FlatButton(
- onPressed: () {},
- child: Row(
- children: <Widget>[
- Icon(
- Icons.music_note,
- color: Colors.white,
- ),
- SizedBox(
- width: 10 * rpx,
- ),
- Text(
- "选择音乐",
- style: TextStyle(color: Colors.white),
- ),
- ],
- ),
- ),
- ),
- ),
- Positioned(
- //拍照按钮
- bottom: 60 * rpx,
- // left: (750*rpx-outBox)/2,
- child: Container(
- width: 750 * rpx,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: [
- IconWithText(
- icon: Icon(
- Icons.search,
- color: Colors.white,
- ),
- text: "道具"),
- CircleTakePhoto(
- outBox: outBox,
- innerBox: innerBox,
- ),
- IconWithText(
- icon: Icon(
- Icons.search,
- color: Colors.white,
- ),
- text: "道具"),
- ])),
- ),
- Positioned(
- right: 30 * rpx,
- top: 80 * rpx,
- child: IconButton(
- icon: Icon(Icons.camera_front),
- onPressed: () {
- _controller =
- CameraController(cameras[1], ResolutionPreset.medium);
- _controller.initialize().then((_) {
- if (!mounted) {
- return;
- }
- setState(() {});
- });
- },
- ),
- )
- ])
- : Container();
- }
- }
- class CircleTakePhoto extends StatelessWidget {
- const CircleTakePhoto(
- {Key key, @required this.outBox, @required this.innerBox})
- : super(key: key);
- final double outBox;
- final double innerBox;
- @override
- Widget build(BuildContext context) {
- double rpx = MediaQuery.of(context).size.width / 750;
- // double outBox=160*rpx;
- // double innerBox=130*rpx;
- return Container(
- width: outBox,
- height: outBox,
- padding: EdgeInsets.all(10 * rpx),
- decoration: BoxDecoration(
- color: Colors.transparent,
- borderRadius: BorderRadius.circular(90 * rpx),
- border: Border.all(
- width: 10 * rpx, color: Color.fromARGB(128, 219, 48, 85)),
- ),
- child: Container(
- width: innerBox,
- height: innerBox,
- alignment: Alignment.center,
- decoration: BoxDecoration(
- color: Color.fromARGB(255, 219, 48, 85),
- borderRadius: BorderRadius.circular(75 * rpx)),
- ),
- );
- }
- }
- class IconWithText extends StatelessWidget {
- const IconWithText({Key key, @required this.icon, @required this.text})
- : super(key: key);
- final Icon icon;
- final String text;
- @override
- Widget build(BuildContext context) {
- return Column(
- children: <Widget>[
- icon,
- Text(
- text,
- style: TextStyle(color: Colors.white),
- )
- ],
- );
- }
- }
|