This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Privacy Policy | |
This privacy policy applies to the br.com.smallladystudio.loteriacompleta app (hereby referred to as "Application") for mobile devices that was created by SmallLady Studios (hereby referred to as "Service Provider") as an Ad Supported service. This service is intended for use "AS IS". | |
Information Collection and Use | |
The Application collects information when you download and use it. This information may include information such as | |
Your device's Internet Protocol address (e.g. IP address) | |
The pages of the Application that you visit, the time and date of your visit, the time spent on those pages | |
The time spent on the Application |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DragImage extends StatefulWidget { | |
final Offset position; | |
final File image; | |
DragImage(this.position, this.image); | |
@override | |
DragImageState createState() => DragImageState(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void _initCamera() async { | |
File img = await ImagePicker.pickImage(source: ImageSource.camera); | |
if (img != null) { | |
setState(() { | |
_image = img; | |
}); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
class _MyHomePageState extends State<MyHomePage> { | |
File _image; | |
@override | |
Widget build(BuildContext context) { | |
return new Scaffold( | |
appBar: new AppBar( | |
title: new Text(widget.title), |