当前位置:   article > 正文

Flutter实现自定义相机界面_flutter拍照界面

flutter拍照界面

先看图,无图无真相~

界面很简陋,可以根据自己的需求进行修改界面

自定义相册使用到的插件

  camera: 0.5.7+4
  permission_handler: 3.2.2
  path_provider: 1.6.0
  • 1
  • 2
  • 3

主要代码

  • 主界面:
class MyHomePage extends StatefulWidget {
   
  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
   
  String imagePath;

  @override
  Widget build(BuildContext context) {
   
    return Scaffold(
      appBar: AppBar(title: Text("自定义camera"),),
      body: Container(
        width: double.infinity,
        height: double.infinity,
        alignment: Alignment.center,
        child: Column(
          children: <Widget>[
            RaisedButton(
              onPressed: (){
   
                requestPermission();
              },
              child: Text("自定义相机"),
            ),
            Container(
                width: 100,
                height: 100,
                margin: EdgeInsets.only(top: 50),
                alignment: Alignment.center,
                child: imagePath!=null?Image.asset(imagePath,):Text("未选择图片")
            )
          ],
        ),
      ),
    )
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/1009180
推荐阅读
相关标签
  

闽ICP备14008679号