点击选中图片,底部弹窗让用户选择使用相册还是相机,用户选中选项后,跳转到对应的相册或者相机功能,结果将图片显示出来

image_picker: ^0.6.1+4

iOS使用image_picker需要在info.plist中添加3个字符串字段

  1. Privacy - Photo Library Usage Description
  2. Privacy - Camera Usage Description
  3. Privacy - Microphone Usage Description

相关代码

  1. import 'dart:io';
  2. import 'package:flutter/material.dart';
  3. import 'package:image_picker/image_picker.dart';
  4. class HomePage extends StatefulWidget {
  5. @override
  6. _HomePageState createState() => _HomePageState();
  7. }
  8. class _HomePageState extends State<HomePage> {
  9. File _image;
  10. File _image2;
  11. Future getImage(ImageSource source, int type) async {
  12. var image = await ImagePicker.pickImage(source: source);
  13. setState(() {
  14. if (type == 0) {
  15. _image = image;
  16. } else {
  17. _image2 = image;
  18. }
  19. });
  20. }
  21. @override
  22. Widget build(BuildContext context) {
  23. return Scaffold(
  24. appBar: AppBar(
  25. title: Text('aaaa'),
  26. ),
  27. body: Center(
  28. child: Column(
  29. // crossAxisAlignment: CrossAxisAlignment.center,
  30. mainAxisAlignment: MainAxisAlignment.center,
  31. children: <Widget>[
  32. Row(
  33. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  34. crossAxisAlignment: CrossAxisAlignment.center,
  35. children: <Widget>[
  36. GestureDetector(
  37. child: Container(
  38. width: 100,
  39. height: 100,
  40. color: Colors.blue,
  41. child: _image == null
  42. ? Text('No image selected.')
  43. : Image.file(_image,fit: BoxFit.cover,),
  44. ),
  45. onTap: () {
  46. //点击选取图片
  47. // getImage(0);
  48. _showSelectionDialog(context,0);
  49. },
  50. ),
  51. GestureDetector(
  52. child: Container(
  53. width: 100,
  54. height: 100,
  55. color: Colors.orange,
  56. child: _image2 == null
  57. ? Text('No image selected.')
  58. : Image.file(_image2,fit: BoxFit.cover),
  59. ),
  60. onTap: () {
  61. _showSelectionDialog(context,1);
  62. // getImage(1);
  63. },
  64. ),
  65. ],
  66. ),
  67. ],
  68. )),
  69. );
  70. }
  71. void _showSelectionDialog(BuildContext context,int type) {
  72. showModalBottomSheet(
  73. context: context,
  74. isScrollControlled: false,
  75. builder: (ctx) {
  76. return Container(
  77. color: Colors.grey,
  78. height: 130,
  79. child: Column(
  80. crossAxisAlignment: CrossAxisAlignment.center,
  81. // mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  82. children: <Widget>[
  83. GestureDetector(
  84. child: _itemCreat(context, '相机'),
  85. onTap: (){
  86. print('选中相机');
  87. Navigator.pop(context);
  88. getImage(ImageSource.camera,type);
  89. },
  90. ),
  91. GestureDetector(
  92. child: _itemCreat(context, '相册'),
  93. onTap: (){
  94. print('选中相册');
  95. Navigator.pop(context);
  96. getImage(ImageSource.gallery,type);
  97. },
  98. ),
  99. GestureDetector(
  100. child: Padding(
  101. padding: EdgeInsets.only(top: 10),
  102. child: _itemCreat(context, '取消'),
  103. ),
  104. onTap: (){
  105. Navigator.pop(context);
  106. },
  107. )
  108. ],
  109. ),
  110. );
  111. },
  112. );
  113. }
  114. Widget _itemCreat(BuildContext context, String title) {
  115. return Container(
  116. color: Colors.white,
  117. height: 40,
  118. width: MediaQuery.of(context).size.width,
  119. child: Center(
  120. child: Text(
  121. title,
  122. style: TextStyle(fontSize: 16, color: Colors.black),
  123. textAlign: TextAlign.center,
  124. ),
  125. ),
  126. );
  127. }
  128. }

flutter image_picker的更多相关文章

  1. flutter image_picker使用照相机

    dependencies: image_picker: ^0.4.12+1 最新的^0.5+9编译无法通过 import 'dart:io'; import 'dart:async'; import ...

  2. 调用原生硬件 Api 实现照相机 拍照和相册选择 以及拍照上传

    一.Flutter image_picker 实现相机拍照和相册选择   https://pub.dev/packages/image_picker   二.Flutter 上传图片到服务器   ht ...

  3. flutter 上传图片 image_picker 的使用

    Github地址: https://github.com/flutter/plugins/tree/master/packages/image_picker packages地址: https://p ...

  4. 【译】使用 Flutter 实现跨平台移动端开发

    作者: Mike Bluestein   | 原文地址:[https://www.smashingmagazine.com/2018/06/google-flutter-mobile-developm ...

  5. iOS开发者学习Flutter

    Flutter for iOS 开发者 本文档适用那些希望将现有 iOS 经验应用于 Flutter 的开发者.如果你拥有 iOS 开发基础,那么你可以使用这篇文档开始学习 Flutter 的开发. ...

  6. flutter插件汇总2

    作者:知乎用户链接:https://www.zhihu.com/question/307594373/answer/568969429来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载 ...

  7. flutter插件汇总

    audio_recorder: any #录音.播放 flutter_sound: ^#录音 dropdown_menu: ^#下拉菜单 simple_permissions:#权限获取 easy_a ...

  8. flutter 常用插件

    audio_recorder: any #录音.播放 flutter_sound: ^1.1.5#录音 dropdown_menu: ^1.1.0#下拉菜单 simple_permissions:#权 ...

  9. Flutter 相机定制

    Flutter中与硬件相关的部分,一直都挺蛋疼的.方案基本上有两种,自己写,或者等出相关的库. 最近做的一个项目中,需要对相机做定制.有过相关模块开发经验的,就知道这种需求并不简单,况且是这种跨平台解 ...

随机推荐

  1. Delphi 控制程序的执行

  2. Centos的yum源更换为阿里云源

    1.备份 # mv /etc/yum.repos.d/CentOS-Base.repo # /etc/yum.repos.d/CentOS-Base.repo.backup 2.下载新的CentOS- ...

  3. IO模型(epoll)--详解-02

    写在前面 从事服务端开发,少不了要接触网络编程.epoll作为linux下高性能网络服务器的必备技术至关重要,大部分游戏服务器都使用到这一多路复用技术.文章核心思想是:要让读者清晰明白EPOLL为什么 ...

  4. 标准C语言(8)

    指针变量用来记录地址数据,指针变量的用途就是找到另外一个变量,没有记录有效地址的指针不能用来找到其它变量,声明指针变量时必须在变量名称前写*.如果一个指针变量记录了另外一个变量的地址就可以认为它们之间 ...

  5. JS转为number的四种方法

    // 1.Number() var num1 = Number(true); console.log(num1); var num2 = Number(" ") console.l ...

  6. button 文字图片上下/左右经常会用到,记录一下

    上下:    self.button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;//使图片和文字水平 ...

  7. mysql单表操作与多表操作

    0. null和notnull: 使用null的时候: create table t8( id int auto_increment primary key, name varchar(32), em ...

  8. Java分级考试

    石家庄铁道大学选课管理系统 1.项目需求: 本项目所开发的学生选课系统完成学校对学生的选课信息的统计与管理,减少数据漏掉的情况,同时也节约人力.物力和财力.告别以往的人工统计. 2.系统要求与功能设计 ...

  9. 动软代码生成器生成model

    model <#@ template language="c#" HostSpecific="True" #> <#@ output exte ...

  10. JavaScript基础——JavaScript语法基础(笔记)

    JavaScript语法基础(笔记) 1.语言编码 JavaScript语言建立在Unicode字符集基础之上,因此脚本中,用户可以使用双字节的字符命名常量.变量或函数等. [示例] var 我=&q ...