Skip to content

Instantly share code, notes, and snippets.

View FabioFS's full-sized avatar
:shipit:
Learning to be resilient!

FABIO FIGUEIREDO DA SILVA FabioFS

:shipit:
Learning to be resilient!
View GitHub Profile
@plateaukao
plateaukao / image_remove_backgroun.dart
Created April 13, 2019 05:18
image remove background in flutter
Future<Uint8List> _downloadImage() async {
String dir = (await getApplicationDocumentsDirectory()).path;
File file = new File('$dir/$_filename');
if (file.existsSync()) {
var image = await file.readAsBytes();
return image;
} else {
var response = await http.get(_url,);
var bytes = response.bodyBytes;