Skip to content

Instantly share code, notes, and snippets.

@Sayegh7
Created April 17, 2019 00:54
Show Gist options
  • Select an option

  • Save Sayegh7/41b1352ae9a7fede07ee15f73ec3d586 to your computer and use it in GitHub Desktop.

Select an option

Save Sayegh7/41b1352ae9a7fede07ee15f73ec3d586 to your computer and use it in GitHub Desktop.
Image picker
import 'dart:io';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Check Squared'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
File img;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(child: Text('X')),
floatingActionButton: FloatingActionButton(
onPressed: () async {
final File imageFile =
await ImagePicker.pickImage(source: ImageSource.camera);
if (mounted) {
setState(() {
img = imageFile;
});
}
},
tooltip: 'Take picture',
child: Icon(Icons.camera),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment