Flutter 使用插件打开相册、相机「建议收藏」

Flutter 使用插件打开相册、相机「建议收藏」需求:image_picker的使用,点击按钮底部弹出相册、拍照选择框,实现具体功能1:引入插件pubspec.yaml增加image_picker:^0.7.5+22:android添加androidx兼容gradle.properties增加android.useAndroidX=trueandroid.enableJetifier=truebuild添加依赖androidTestImplementation’androidx.tes…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

需求: image_picker的使用,点击按钮底部弹出 相册、拍照选择框,实现具体功能

 

1:引入插件
pubspec.yaml 增加
 

 image_picker: ^0.7.5+2

2:android 添加androidx兼容

gradle.properties 增加
 

android.useAndroidX=true
android.enableJetifier=true

build 添加依赖

androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    testImplementation 'androidx.test:core:1.2.0'

3: ios ->Runner->info.plist添加权限说明

 

<key>NSCameraUsageDescription</key>
    	<string>这是你的自拍照</string>
    	<key>NSMicrophoneUsageDescription</key>
    	<string>用于音频插件</string>
    	<key>NSPhotoLibraryUsageDescription</key>
    	<string>用于相册选择插件</string>
    	<key>UIBackgroundModes</key>
    	<array>
    		<string>remote-notification</string>
    	</array>

4:编写Ui
添加一个浮动按钮,增加点击事件弹出相册/拍照选择框具体如下:
 

floatingActionButton: FloatingActionButton(
        child: Center(
            child: Text(
          "点我",
          style: TextStyle(color: Colors.white),
        )),
        backgroundColor: Colors.blueAccent,
        elevation: 0.2,
        onPressed: () {
          //点击事件
          showPicker();
        },
      )

 

//弹出选择相册/拍照对话框
  showPicker() {
    //底部弹出
    showModalBottomSheet(
        context: context,
        builder: (BuildContext con) => Container(
              height: 160,
              padding: EdgeInsets.all(20),
              color: Colors.white,
              child: Expanded(
                child: ListView(
                  children: [createItem(true, "拍照"), createItem(false, "相册")],
                ),
              ),
            ));
  }
//创建item
  Widget createItem(bool state, String name) {
    return GestureDetector(
        onTap: () {
          //点击事件处理
          openPicker(state);
        },
        child: ListTile(
          leading: Icon(state ? Icons.camera : Icons.image),
          title: Text(name),
        ));
  }
//使用imagePicker异步打开拍照 、相册
  openPicker(bool state) async {
    //销毁底部弹出框
    Navigator.pop(context);
    var picker = ImagePicker();
    //根据状态标识决定打开相机还是相册
    var future = await picker.getImage(
        source: state ? ImageSource.camera : ImageSource.gallery);
    setState(() {
      //通过setstate 通知重绘更新
      file = File(future.path);
    });
  }
拿到了图片,那么就差左后一步了,实现body 添加Image 显示图片,代码如下:
 body: Container(
        alignment: Alignment.center,
        margin: EdgeInsets.all(20),
        //没有图片时候显示占位图
        child: file == null ? Icon(Icons.image,) : Image.file(file),
      )

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/193177.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号