Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Dart Map tools
Hi everyone! I published an update of my library that adds some useful functions to Map objects. I hope you enjoy it. https://ift.tt/30nEr2F Any likes in pub.dev or star in github I'll very much appreciate. ---------------------------------------------------------------

August 03, 2020 at 05:12PM by Marcus Duarte
https://ift.tt/31fBikY
New post on Flutter Dev Google group:

The Boring Show code
Hii Devs, I really like the boring show and I would like to follow up the code that is written in the show. My question is that: is there any way to access that code , Is it available on github or anywhere else. Thank you

August 03, 2020 at 05:27PM by Vaibhav Bisht
https://ift.tt/3hVkhDk
New tweet from FlutterDev:

Find out how Flutter uses GitHub and how you can benefit.

✍️How are we dealing with issues filed?
🚀Changes to support project growth.
💡Helpful tips for filing issues to maximize value.
👩‍💻Flutter’s triage process.

Read @kf6gpe's article ↓ https://t.co/ewZ099Px55— Flutter (@FlutterDev) August 3, 2020

August 03, 2020 at 06:19PM
http://twitter.com/FlutterDev/status/1290321282068709377
New post on Flutter Dev Google group:

Gradle threw an error while downloading artifacts from the network. Retrying to download...error when I want to run flutter on mobile for the first time
hi I 'm facing the following error when I want to run flutter on mobile for the first time Running Gradle task 'assembleDebug'... Exception in thread "main" java.util.zip.ZipException: error in opening zip file at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.
New tweet from FlutterDev:

We're super excited to announce our speakers for Byteconf Flutter, a free live-streamed @flutterdev conference, taking place on August 14th, 2020!

Learn more about our speakers below, and RSVP for your free ticket 🎟#flutterdev #askflutterhttps://t.co/QruwAOiqLM— Bytesized (@bytesizedcode) July 31, 2020

August 03, 2020 at 07:54PM
http://twitter.com/FlutterDev/status/1290345260174860288
New post on Flutter Dev Google group:

Flutter crash on stable on launch
Launching lib\main.dart on sdk gphone x86 arm in debug mode... √ Built build\app\outputs\apk\debug\app-debug.apk. W/.example.spade( 3204): Accessing hidden method Landroid/view/accessibility/AccessibilityNodeInfo;->getSourceNodeId()J (greylist,test-api, reflection, allowed) W/.example.spade(

August 04, 2020 at 05:09AM by Dorian Holmes
https://ift.tt/3iaLDpf
New post on Flutter Dev Google group:

flutter_google_places different results on emulator vs device.
I'm using the example here: https://ift.tt/3i4aRFv I notice when I use the flutter plugin flutter_google_places on an emulator to find a nearby business, the results are near me, but when I use an actual device the results are not. Can you help me understand why

August 04, 2020 at 05:33AM by Matt Mason
https://ift.tt/3gsBKT8
New post on /r/flutterdev subreddit:

Flutter + Stripe Connect + 3DSecure (SCA)
https://ift.tt/2DySTfg

August 03, 2020 at 11:55PM by AtticusBro
https://ift.tt/33jsQDU
New post on /r/flutterdev subreddit:

I created my first flutter web portfolio check it out guys and let me know how this is.
The flutter web experience is very great no HTML,no css only dart.My portfolio made with flutter web My PortfolioIf you want source code or want to know how to deploy flutter website in 3 lines of code .You can check this post How to deploy flutter website in 3 lines of code

August 04, 2020 at 11:17AM by Professional_Box_783
https://ift.tt/2BWWX8N
New post on Flutter Dev Google group:

Problems implementing a visual programming editor
Hi guys, I am trying to build a visual programming editor with flutter. The user has to be able to add nodes, connect nodes, edit node properties and other related stuff. I have done some experiments with Stack and CustomPaint but I've stucked with two problems: 1. I want to implement zoom+transl

August 04, 2020 at 11:56AM by Carmelo Juanes Rodríguez
https://ift.tt/2EGMHT4
New post on Flutter Dev Google group:

ICON
I did the app icon in the correct way. But i cant see that icon in my phone's home screen. But when i look the app settings i can see the icon. All time its happening same thing for me. I mean the app icon set by me. The icon already set up by londonappbrewery not happening like this. Once when

August 04, 2020 at 12:19PM by ANAGHA VP
https://ift.tt/31eIFZO
New post on /r/flutterdev subreddit:

Flutter : Preview form builder like google forms preview system in flutter
https://ift.tt/3kca5bh

August 04, 2020 at 01:04PM by sulli110
https://ift.tt/3fr5HSg
New post on /r/flutterdev subreddit:

Flutter : Increment and Decrement with use of counter
So I have an application where I am grading student, so I have created a counter where in as the counter moves up from 0 to 10, it is counted as mistakes student has made. So student has total Marks 10, every time a student makes a mistake, counter goes up and Marks should decrease by 1. I just need to implement proper login for the counter to work with Marks. Counter goes up marks should decrease.
Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: <Widget>[ FlutterCounter( initialValue: _defaultValue, minValue: 0, maxValue: 10, onChanged: (value) { setState(() { _defaultValue = value; _counter = value; }); print(value); }, decimalPlaces: 0), Text( '$grades', style: TextStyle( fontSize: 22.0, fontWeight: FontWeight.bold, ), ), 
This is the counter and a text widget with it when counter increments the grades should decrease by 1.
double grades = 10.0; double currentValue; num _counter = 0; num _defaultValue = 0; 


August 04, 2020 at 01:02PM by sulli110
https://ift.tt/39RQw3x
New post on Flutter Dev Google group:

Help on Integrating Facebook Audience Network Ads on Flutter application.
Hi All, I successfully integrated Facebook Audience Network in my flutter app using facebook_audience_network0.7.0 pub package. Issue i am facing is , i am not able to see the facebook ads on my flutter app, if the app is installed via apk file or from playstore, but the same app if i am

August 04, 2020 at 01:58PM by CYRIL P. JOY
https://ift.tt/2DbE82u
New post on /r/flutterdev subreddit:

Im trying to create a Rich Text Editor from scratch in flutter
Hey guys I am trying to make own customized Rich Text Editor in flutter from scratch. I browsed through internet and found that using json as datatype is a good option. I used zefyr text editor but it do not give level of customization needed for my used case

August 04, 2020 at 02:34PM by jtresponse
https://ift.tt/3i5ir2H