Flutter Heroes
25.7K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

Flutter_Blue, Bluetooth, and sending data
Hey all,​Has anyone used the FlutterBlue bluetooth plugin? I'm trying to figure out how to make a desktop application (say python or c++) be able to talk to the phone (or well, phone to desktop).​https://github.com/pauldemarco/flutter_blue​I see there are setting and reading characteristics, but say if I wanted to send a string and the the bluetooth listener receive that string. I'm very new to how bluetooth pairing & how the protocol works. I have built large tcp/ip applications for work but am honestly clueless on this front.​Appreciate anyone's guidance!

April 26, 2019 at 05:13AM by boomerang473
http://bit.ly/2IKdE9p
New post on /r/flutterdev subreddit:

Homemade Flutter game
http://bit.ly/2IHMWOv

April 26, 2019 at 05:07AM by yum650350
http://bit.ly/2IXFk9W
New post on /r/flutterdev subreddit:

Isolate.send max amount of data
http://bit.ly/2W3gMjK

April 26, 2019 at 10:50AM by lesnitsky_a
http://bit.ly/2IFqCVK
New post on /r/flutterdev subreddit:

How to store data in case of phone switch
Asked similar question before, but got responses that were not exactly what i was looking for, so I’m going to be a little more specific.What are you guys using to store data in case a user gets a new phone and/or the “old” local data is no longer available. Looking for an easy way (if there is any) for both Android and iOS.

April 26, 2019 at 12:35PM by Waentastic
http://bit.ly/2WcqzUM
New post on /r/flutterdev subreddit:

Flutter RSS feed
Is there a flutter rss feed?

April 26, 2019 at 04:40PM by namanvishnoi
http://bit.ly/2IYun8k
New post on Flutter Dev Google group:

VS Code extension v2.26.0: Auto-import code-completion, improved dependencies tree...
Hey all, v2.26.0 is now available. Release notes below (and online here ). Auto-Importing from Code Completion #1060 : Code completion now lists symbols that are not yet imported and will auto-import the

April 26, 2019 at 05:18PM by Danny Tuppeny
http://bit.ly/2GzBEbB
New post on Flutter Dev Google group:

New tooling releases - Improved Code completion, New UI-as-Code lints and assists
Happy Friday Flutter-Dev! New tooling releases are available, check below for the details! Improved code completion! We now show code completion for symbols that are not yet in scope. When one of these completions is selected, we’ll auto-update the imports for the file automatically. Users

April 26, 2019 at 05:25PM by Nilay Yener
http://bit.ly/2L6CjqI
New post on Flutter Dev Google group:

Closed sour e packages
For enterprise use is there a way to distribute closed source packages ?

April 26, 2019 at 08:11PM by Ged Wed
http://bit.ly/2ZESy1w
New post on Flutter Dev Google group:

Call confirmation app
Hi, was curious if anyone had an example to build off of for creating an app to require confirmation (swipe, tap, answer question etc) before allowing a call to be made with the dialer. Is this only possible on Android so not possible in flutter?

April 26, 2019 at 11:12PM by eradi...@gmail.com
http://bit.ly/2UZ3M1Z
New post on Flutter Dev Google group:

Flutter - Firestore CRUD, How to properly store and retrieve DataTime in Firestore
Hi everyone! Does anyone have an example of how to create and retrieve DateTime type from an object in Firestore? I've found many articles about Firestore using its own timestamp, does this mean it saves object creation date and it can be retrieved without storing DataTime? Future

April 27, 2019 at 12:40AM by J M
http://bit.ly/2L54BSn
New post on Flutter Dev Google group:

Flutter, please stay upgrade! Or you will not survive!
'it is crucial to keep your dependencies as possible close to the up-to-date versions available in order to benefit from the latest upgrades (such as bug fixes). The longer you wait, the harder the upgrade will be.' and the end of 2019 is not so far!

April 27, 2019 at 01:13AM by Bened
http://bit.ly/2Wh7qAI
New post on Flutter Dev Google group:

Got an Android Flutter App - now to get it to iOS
I am not a mac guy at all. Windows & Android all the way. I dont really want to write for iOS, but my customer base has a lot of iPhone. I have ready the "Preparing an iOS app for Release", now I want to get the cheapest hardware I can in order to get it to an iPhone. I am just a solo guy

April 27, 2019 at 02:36AM by superdud...@gmail.com
http://bit.ly/2Pu3UjW
New post on /r/flutterdev subreddit:

Drawing in Flutter using CustomPainter
http://bit.ly/2VoKp1T

April 27, 2019 at 08:05AM by divyanshub024
http://bit.ly/2IJHeM9
New post on Flutter Dev Google group:

Is there any way to test IOS app in windows
Hi all.I'm a beginner to flutter but i have previously done android studio. it's very interesting that it can support both android and ios platform. I am so much excited to know all the widgets and new features in flutter. Is there any way to run IOS tests on a windows computer? Thanks in

April 27, 2019 at 08:41AM by Yasas Sandeepa
http://bit.ly/2XOokqQ
New post on Flutter Dev Google group:

Dependency Injection: Any chance to get the dart:mirrors library in Flutter?
Hi, I’ve wrote a dependency injection container for dart ( http://bit.ly/2LgzzXA) several time ago. The problem is that this package uses the dart:mirrors library which isn’t available in Flutter yet. Is there is any chance to get the mirrors library in Flutter? Best,

April 27, 2019 at 09:22AM by jul...@mintware.de
http://bit.ly/2VsI7yx
New post on /r/flutterdev subreddit:

Question on plugin security(platform channel methods)
Example, using flutter_secure_storage plugin for storing keys into the keychain/keystore.I am getting a crypto key from library such as flutter_sodium. I want to store my private key into its respective platform keychain/keystore.So firstly, i do an async call to the lib_sodium platform and await for my key. The native platform communicates the key back to me in flutter/dart environment.
Secondly, i store this key I retrieved into secure_storage. Which does another platform call to native OS.Is this secure? Now whenever we access the private keys from the keychain/keystore it will invoke a method call to retrieve it from its respective native OS store and communicate it back to dart.Is it okay in terms of security when the communication occurs that we are passing back and forth our keys(between dart and native OS)?Would it be better to combine such libraries, when we generate a secret Key, store it at the same time in their own respective keychain/keystore, in that invoked method call?
So this way, we never have to communicate the secret key back to dart/flutter. Let all the processing happen on native side. Only let the public keys be transmitted to the dart side of the code so we can publish them onto our backend.I am currently developing my own package where I generate curve25519 public key and secret- keys and was thinking of integrating keychain and a keystore in my own package. So i can save the secret without passing it through the communication channel between the native os and dart.Would this be better for security or is it redundant. Lets hear your says! Thank you

April 27, 2019 at 09:13AM by Bk_ADV
http://bit.ly/2GLb5lc