New post on Flutter Dev Google group:
Flutter and native device resources access
Hi, i'm new with Flutter, i'm coming from Ionic.. Looking Flutter docs i don't understand how to access to device resources like camera, network, geolocalization, push notifications... by plugings ? is there some docs about it ? Thanks for help..
February 28, 2019 at 12:38AM by Mauro Miotello
https://ift.tt/2UcxWub
Flutter and native device resources access
Hi, i'm new with Flutter, i'm coming from Ionic.. Looking Flutter docs i don't understand how to access to device resources like camera, network, geolocalization, push notifications... by plugings ? is there some docs about it ? Thanks for help..
February 28, 2019 at 12:38AM by Mauro Miotello
https://ift.tt/2UcxWub
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter’s Cupertino Package for iOS devs - Flutter In Focus
https://www.youtube.com/attribution_link?a=JW8GYFO90LY&u=%2Fwatch%3Fv%3D3PdUaidHc-E%26feature%3Dshare
February 28, 2019 at 01:39AM by Pixelreddit
https://ift.tt/2VsinyW
Flutter’s Cupertino Package for iOS devs - Flutter In Focus
https://www.youtube.com/attribution_link?a=JW8GYFO90LY&u=%2Fwatch%3Fv%3D3PdUaidHc-E%26feature%3Dshare
February 28, 2019 at 01:39AM by Pixelreddit
https://ift.tt/2VsinyW
YouTube
Flutter’s Cupertino Package for iOS devs - Flutter In Focus
In this video, Andrew dives into the Flutter Cupertino widget package. The Cupertino package is built and maintained by the Flutter team and it ships with the SDK - if you’ve got Flutter on your machine, you’ve got Cupertino. Learn how you can use Cupertino…
New post on /r/flutterdev subreddit:
How to fetch multiple JSON endpoints in async manner, then get results at end?
I am struggling with isolates and Futures. All I want is iterating through a list of urls, which will return JSON arrays of anything.And then funnelling all JSON array items into my own list of items in an async way.I am not sure how to proceed, but it seems _fetchAndParse() is not constructed properly (expecting future), and I am on the end of the rope :)Flutter docs examples are fetching on main thread, and then moving to parse and return data in a separate isolate via compute().I am trying to fetch and parse in a separate isolate.Any advice is welcome.
February 28, 2019 at 02:19AM by dimitar71
https://ift.tt/2tG1Ifh
How to fetch multiple JSON endpoints in async manner, then get results at end?
I am struggling with isolates and Futures. All I want is iterating through a list of urls, which will return JSON arrays of anything.And then funnelling all JSON array items into my own list of items in an async way.I am not sure how to proceed, but it seems _fetchAndParse() is not constructed properly (expecting future), and I am on the end of the rope :)Flutter docs examples are fetching on main thread, and then moving to parse and return data in a separate isolate via compute().I am trying to fetch and parse in a separate isolate.Any advice is welcome.
import 'package:flutter/material.dart'; import 'dart:async'; import 'dart:convert'; import 'package:flutter/foundation.dart'; import 'package:http/http.dart' as http; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { _getJson(); return MaterialApp( title: 'Flutter Demo', home: Text('Hello')); } Future<List<dynamic>> _getJson() async { final List<String> urls = [ 'https://api.github.com/users/mralexgray/repos', 'https://api.github.com/users/mralexgray/repos', 'https://api.github.com/users/mralexgray/repos' ]; final List<dynamic> result = []; urls.forEach((url) async { await compute(_fetchAndParse, url).then((items) => result.addAll(items)); }); return result; } List<dynamic> _fetchAndParse(String url) { var client = http.Client(); final response = client.get(url); return json.decode(response.body); } }
February 28, 2019 at 02:19AM by dimitar71
https://ift.tt/2tG1Ifh
reddit
r/FlutterDev - How to fetch multiple JSON endpoints in async manner, then get results at end?
0 votes and 0 comments so far on Reddit
New tweet from flutterio:
The Cupertino package provides widgets, page transitions, themes, & more to help you make iOS users right at home. Watch @RedBrogdon build a pure Cupertino app in this #FlutterinFocus!
Watch now → https://t.co/MPzpP0cQzv pic.twitter.com/ShB1whNwl0— Flutter (@flutterio) February 28, 2019
February 28, 2019 at 01:13AM
http://twitter.com/flutterio/status/1100911938782089222
The Cupertino package provides widgets, page transitions, themes, & more to help you make iOS users right at home. Watch @RedBrogdon build a pure Cupertino app in this #FlutterinFocus!
Watch now → https://t.co/MPzpP0cQzv pic.twitter.com/ShB1whNwl0— Flutter (@flutterio) February 28, 2019
February 28, 2019 at 01:13AM
http://twitter.com/flutterio/status/1100911938782089222
Twitter
Andrew Brogdon (@RedBrogdon) | Twitter
The latest Tweets from Andrew Brogdon (@RedBrogdon). I work with @Flutterio at the Google
New post on /r/flutterdev subreddit:
Use Flipper debug your Flutter app
Hello everyone, I created a flipper sdk for flipper, you can debug your network request and preferences on flipper. https://github.com/blankapp/flutter_flipperkit/https://i.redd.it/t50az32ez7j21.png
February 28, 2019 at 03:25AM by lijy91
https://ift.tt/2H5BACy
Use Flipper debug your Flutter app
Hello everyone, I created a flipper sdk for flipper, you can debug your network request and preferences on flipper. https://github.com/blankapp/flutter_flipperkit/https://i.redd.it/t50az32ez7j21.png
February 28, 2019 at 03:25AM by lijy91
https://ift.tt/2H5BACy
GitHub
leanflutter/flutter_flipperkit
Flipper (Extensible mobile app debugger) for flutter. - leanflutter/flutter_flipperkit
New post on Flutter Dev Google group:
How to fetch multiple JSON endpoints in async manner, then get results at end?
I am struggling with isolates and Futures. All I want is iterating through a list of urls, which will return JSON arrays of anything. And then funnelling all JSON array items into my own list of items in an async way. I am not sure how to proceed, but it seems *_fetchAndParse()* is not
February 28, 2019 at 04:26AM by dimi...@gmail.com
https://ift.tt/2UakiYp
How to fetch multiple JSON endpoints in async manner, then get results at end?
I am struggling with isolates and Futures. All I want is iterating through a list of urls, which will return JSON arrays of anything. And then funnelling all JSON array items into my own list of items in an async way. I am not sure how to proceed, but it seems *_fetchAndParse()* is not
February 28, 2019 at 04:26AM by dimi...@gmail.com
https://ift.tt/2UakiYp
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
built_value json serialization
Hi Dart dev team, I was watching the Episode 2 of "The boring Flutter development show" on data serialisation using built_value (thank you guys for putting together a good
February 28, 2019 at 08:25AM by Archan Paul
https://ift.tt/2IFFLal
built_value json serialization
Hi Dart dev team, I was watching the Episode 2 of "The boring Flutter development show" on data serialisation using built_value (thank you guys for putting together a good
February 28, 2019 at 08:25AM by Archan Paul
https://ift.tt/2IFFLal
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
How do you handle navigation in your projects?
Hi everyone! How do you handle routing in your projects, i.e. conditional builder, Navigator (named or not), nested Navigators etc.? I think there are many options and new ones (as myself) might have troubles picking the best way for their projects so some examples would be useful. Cheers!
February 28, 2019 at 09:49AM by Ciprian Amariei
https://ift.tt/2Vt1C6F
How do you handle navigation in your projects?
Hi everyone! How do you handle routing in your projects, i.e. conditional builder, Navigator (named or not), nested Navigators etc.? I think there are many options and new ones (as myself) might have troubles picking the best way for their projects so some examples would be useful. Cheers!
February 28, 2019 at 09:49AM by Ciprian Amariei
https://ift.tt/2Vt1C6F
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter WordPress API with Example App
https://ift.tt/2EdwIrG
February 28, 2019 at 10:25AM by sachingns
https://ift.tt/2T4Mq2L
Flutter WordPress API with Example App
https://ift.tt/2EdwIrG
February 28, 2019 at 10:25AM by sachingns
https://ift.tt/2T4Mq2L
GitHub
dreamsoftin/flutter_wordpress
Flutter WordPress API. Contribute to dreamsoftin/flutter_wordpress development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Working With gRPC in Flutter on Top of a Go Service
https://www.youtube.com/watch?v=Vd9sV8_uDrQ
February 28, 2019 at 10:17AM by Purple_Pizzazz
https://ift.tt/2H63I8C
Working With gRPC in Flutter on Top of a Go Service
https://www.youtube.com/watch?v=Vd9sV8_uDrQ
February 28, 2019 at 10:17AM by Purple_Pizzazz
https://ift.tt/2H63I8C
YouTube
Working With gRPC in Flutter on Top of a Go Service
In this video, we take an existing gRPC service from Go and add a Flutter based Client to it.
Basics of Protobuf and gRPC in Go: https://youtu.be/Y92WWaZJl24
Golang Docker Tutorial Video: https://youtu.be/mML6GiOAM1w
Github Repository: https://github.com/tensor…
Basics of Protobuf and gRPC in Go: https://youtu.be/Y92WWaZJl24
Golang Docker Tutorial Video: https://youtu.be/mML6GiOAM1w
Github Repository: https://github.com/tensor…
New post on /r/flutterdev subreddit:
data_tables | Plugin to show List View on Mobile, Data Tables on Tablets & Desktops
https://ift.tt/2BRdFTF
February 28, 2019 at 09:37AM by Purple_Pizzazz
https://ift.tt/2NBZ43u
data_tables | Plugin to show List View on Mobile, Data Tables on Tablets & Desktops
https://ift.tt/2BRdFTF
February 28, 2019 at 09:37AM by Purple_Pizzazz
https://ift.tt/2NBZ43u
Dart Packages
data_tables | Flutter Package
data_tables Flutter and Dart package - List View on Mobile and Data Tables on Tablets/Desktops.
New post on /r/flutterdev subreddit:
Top 10 VSCode Extensions For Flutter – Pawan Kumar – Medium
https://ift.tt/2IHqPJ0
February 28, 2019 at 11:13AM by imthepk
https://ift.tt/2Tlnsvm
Top 10 VSCode Extensions For Flutter – Pawan Kumar – Medium
https://ift.tt/2IHqPJ0
February 28, 2019 at 11:13AM by imthepk
https://ift.tt/2Tlnsvm
Noteworthy - The Journal Blog
Top 10 VSCode Extensions For Feb/Mar 2019
Have you heard about VSCode? Not yet? Omg! you really need to be updated bro. Well, if you are already familiar with this then this…
New post on /r/flutterdev subreddit:
S.O.L.I.D The first 5 principles of Object Oriented Design with Dart
https://ift.tt/2IFimWE
February 28, 2019 at 11:11AM by imthepk
https://ift.tt/2Tk7wJF
S.O.L.I.D The first 5 principles of Object Oriented Design with Dart
https://ift.tt/2IFimWE
February 28, 2019 at 11:11AM by imthepk
https://ift.tt/2Tk7wJF
Medium
S.O.L.I.D The first 5 principles of Object Oriented Design with Dart
I’ve found a very good article explaining the S.O.L.I.D. principles, if you are familiar with PHP, you can read the original article here…
New post on /r/flutterdev subreddit:
2 short questions: naming and code (function) splitting
I used to have most of my application code inside main.dart and make heavy use of code folding, which I later on realized is kind of a bad practice. Now I switched to splitting up code into a lot of files. My question:Would it be considered a bad practice to split up functions that are too big for my liking (i like to keep all of a function's code well visible without scrolling) into multiple helper functions that I name after what they do in the main function and keep all of them in a util.dart file, which I have one of for every screen and for every bloc corresponding to a screen?Thanks for your attention.
February 28, 2019 at 11:27AM by footurist
https://ift.tt/2tHP7Z2
2 short questions: naming and code (function) splitting
I used to have most of my application code inside main.dart and make heavy use of code folding, which I later on realized is kind of a bad practice. Now I switched to splitting up code into a lot of files. My question:Would it be considered a bad practice to split up functions that are too big for my liking (i like to keep all of a function's code well visible without scrolling) into multiple helper functions that I name after what they do in the main function and keep all of them in a util.dart file, which I have one of for every screen and for every bloc corresponding to a screen?Thanks for your attention.
February 28, 2019 at 11:27AM by footurist
https://ift.tt/2tHP7Z2
reddit
r/FlutterDev - 2 short questions: naming and code (function) splitting
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Flutter Music Interface UI Concept - Speed Code
https://youtu.be/GD3jbAPe_XY
February 28, 2019 at 01:04PM by abdihamid10
https://ift.tt/2IFCZSx
Flutter Music Interface UI Concept - Speed Code
https://youtu.be/GD3jbAPe_XY
February 28, 2019 at 01:04PM by abdihamid10
https://ift.tt/2IFCZSx
YouTube
Flutter Music Interface UI Concept - Speed Code
Thanks for Watching :)
Make sure to like + Subscribe For More!
Support Devefy on Patreon: https://www.patreon.com/devefy
Source code: https://github.com/devefy/Flutter-Music-Player-UI
Design credit -https://www.uplabs.com/posts/music-interface-ui-design
Make sure to like + Subscribe For More!
Support Devefy on Patreon: https://www.patreon.com/devefy
Source code: https://github.com/devefy/Flutter-Music-Player-UI
Design credit -https://www.uplabs.com/posts/music-interface-ui-design
New post on Flutter Dev Google group:
qr code reader in a container
i need to scan a qr code and i want to open the camera in widget like a container or popup something like that
February 28, 2019 at 02:25PM by hani.abd...@gmail.com
https://ift.tt/2VpQnvy
qr code reader in a container
i need to scan a qr code and i want to open the camera in widget like a container or popup something like that
February 28, 2019 at 02:25PM by hani.abd...@gmail.com
https://ift.tt/2VpQnvy
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on Flutter Dev Google group:
Could you recommend a library or method to recognize a Rectangle from a picture?
I'm looking for a library to crop a rectangle from an image. Basically I would like to crop automatically a business card. OpenCV is only on Android :( Thanks Alain
February 28, 2019 at 02:39PM by alain....@adixon.fr
https://ift.tt/2IGMReI
Could you recommend a library or method to recognize a Rectangle from a picture?
I'm looking for a library to crop a rectangle from an image. Basically I would like to crop automatically a business card. OpenCV is only on Android :( Thanks Alain
February 28, 2019 at 02:39PM by alain....@adixon.fr
https://ift.tt/2IGMReI
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
New post on /r/flutterdev subreddit:
Flutter CI with Bitrise - A quick walkthrough based on the Voice Flutter project, by Google GDE Joe Birch
https://ift.tt/2EuDtpx
February 28, 2019 at 02:50PM by HHendrik
https://ift.tt/2T5Dha5
Flutter CI with Bitrise - A quick walkthrough based on the Voice Flutter project, by Google GDE Joe Birch
https://ift.tt/2EuDtpx
February 28, 2019 at 02:50PM by HHendrik
https://ift.tt/2T5Dha5
Joe Birch
Flutter CI with Bitrise
If you weren’t already aware, I’m already a big fan of bitrise – and when I heard they were adding support for Flutter, I gained even more love for the product. Naturally I wanted…
New post on /r/flutterdev subreddit:
VS Code extension adds Dart DevTools integration for a Flutter Inspector 🎉
https://ift.tt/2BYS3Vy
February 28, 2019 at 03:12PM by DanTup
https://ift.tt/2U8FOwU
VS Code extension adds Dart DevTools integration for a Flutter Inspector 🎉
https://ift.tt/2BYS3Vy
February 28, 2019 at 03:12PM by DanTup
https://ift.tt/2U8FOwU
New post on Flutter Dev Google group:
shared_preferences in and out of Android Settings App
Does anyone know how to get user Preferences (only some of them) from our app to appear in the Settings app area? We figured out how to do this for iOS (and what a PITA that was) -- but we have no idea on how to do this for Android... We have a critical need for the user to be able to set some
February 28, 2019 at 04:04PM by Steven McDowall
https://ift.tt/2EifJ7L
shared_preferences in and out of Android Settings App
Does anyone know how to get user Preferences (only some of them) from our app to appear in the Settings app area? We figured out how to do this for iOS (and what a PITA that was) -- but we have no idea on how to do this for Android... We have a critical need for the user to be able to set some
February 28, 2019 at 04:04PM by Steven McDowall
https://ift.tt/2EifJ7L
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.