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

Text Editing Interface (like Microsoft Word)
Is it possible for the user to have a much simplified interface of World that allows the user to enter text (probably textfield?) then the user can specify the text bigger smaller, color and bold of the text. Is there a widget or a package for this and if not and I have to program it myself,

May 13, 2020 at 06:46PM by Marlene Rahm
https://ift.tt/35U864K
New post on /r/flutterdev subreddit:

Anyone have an example w/ unit testing for the Package (ChangeNotifier)
I asked this on Stack Overflow yesterday and haven't gotten much traction. I was wondering if anyone on Reddit has an example that can help. I tried looking through the Provider package's tests and I honestly couldn't make much sense out of it. Here is the code I'm working with currently:​https://stackoverflow.com/questions/61757993/how-to-unit-test-the-value-from-a-changenotifier-provider-state​I would love if someone can point me in the right direction!

May 13, 2020 at 06:29PM by protechig
https://ift.tt/3fFrozv
New post on Flutter Dev Google group:

Flutter 1.17.1 hotfix released to stable.
Hi, Flutter 1.17.1 has been released to stable. This is a hotfix release to 1.17.0 and also includes a hotfixed Dart 2.8.2 version. Changes for this build are as follows (and available at Hotfixes to the Stable Channel · flutter/flutter Wiki · GitHub
Hello developers! Thanmay has published a flutter package that helps one to build Splash Screen (that is displayed at start of app for few seconds that has a logo or other details) very easily.
Now, one need not implement init and call Timer function (and Navigate to other screen).
Just specify in pubspec.yaml file, import, and use it.
https://pub.dev/packages/simple_splashscreen
Hope it makes your code simpler and efficient.
Also please like and provide me feedback.
New post on /r/flutterdev subreddit:

Get? Get!
So, I'm new to Flutter. I've only been learning it over the past month — only been coding for the past six months or so. State management has been really tough to come to grips with. I've been trying out a few different approaches and Provider, or the Stacked ... uhm, stack, have seemed the simplest approach to get started.But then I started reading up on how Stacked uses a library called Get for routing. So I read-up on Get's pub page and see that the library has its own stupidly simple approach to managing state. Like, it's too easy.Has anyone else had a chance to play around with it? I'd like to know if there's a reason not to ditch all of the other approaches in favor of this total simplicity.

May 13, 2020 at 10:36PM by jdc123
https://ift.tt/2T3rYgB
New post on /r/flutterdev subreddit:

How stable is Web support?
Having just discovered flutter recently.. I am blown away with how cool this platform is. The fact that it gets compiled to native code and from what I'm ready can even be more performant than other native apps is incredible.That being said, I am considering using it for a project that I want to bring to market sometime in the fall. How stable is the web support? By then will it be stable? I guess some of these questions we don't know.. I'm more asking for expierence

May 14, 2020 at 12:59AM by Skippertech
https://ift.tt/3bz9TgJ
New post on /r/flutterdev subreddit:

Has anyone tried this Zoom flutter plugin to add video conferencing capabilities?
Hi, I am new to flutter, learning a lot and enjoying the journey thus far. I would like to integrate video conferencing into my next project – a simple social game.I've found this from random Googling... https://github.com/decodedhealth/flutter_zoom_pluginHas anyone used it? What is your experience? I noticed it is not listed on pub.dev.How does that compare with other video conferencing plugin such as https://pub.dev/packages/agora_rtc_engine?

May 14, 2020 at 03:06AM by BeGoodOne
https://ift.tt/2yLO7tb
New post on /r/flutterdev subreddit:

Adobe XD to Flutter!
Does the new Adobe XD plugin export only UI elements or all animations and screen interactions? Im a beginner in flutter and would love to be using XD to develop my UIs and focus on the backend in code. Looking forward to your support, thanks!

May 14, 2020 at 03:37AM by Dragon_W001
https://ift.tt/3ctveK4
New post on /r/flutterdev subreddit:

iOS Flutter limitations for our app trending towards 1,000 downloads
Hi peeps,I wanted to share my team's experience building a Flutter app for iOS. As an intro, I used to be a Senior Software Eng @ Instagram at the core team (mostly working on perf, networking and background prefetch).Our overall experience was great! Really quick turnaround and amazing dev velocity. We did have to implement a flutter + native architecture for several reasons:- When we started, Flutter it was too new and we were unsure if it was going to be adopted widely. It's still unclear if it'll get as much support as Android gets from Google.- Certain libraries or SDKs not present or not mature in Flutter like: Stripe, Maps, Apple Pay, FacebookSDK or AWSPinpoint for analytics (our preferred backend solution).- Managing userSession + network calls from native. Personally, I like to have full control of caching data and making network requests the way I was used to given that our app manages health data.- In-app messaging capabilities. We integrate with Zendesk iOS sdk so we need to render that fully in native.Some other nits: video libraries limitations or need to implement crash reports (super easy) instead of having the iTunes out of the box solution for crashes. It's nice that the app doesn't close on a crash like in native tho!To summarize, if I had to imagine Flutter being used for IG, there's no way. For a social media app, the low level control is very much needed or if your app is heavy on data fetching and rendering. Other than that, we are *super happy* with our decision to have built on Flutter!P.S.: You can checkout some screenshots of the app in our webpage or searching for Base Tracking in the AppStore to see how it looks although you can't see much content in the app for non-members.

May 14, 2020 at 04:25AM by priegol
https://ift.tt/2T6ADiy
New post on /r/flutterdev subreddit:

It's super easy Use GestureDetector to detect gestures like tap, double Tap, press, LongPress, pan, drag, zoom, etc. (with video)
37th Flutter Tip on 100 days of Flutter.All those callbacks behave like onClick(){} on Button.
GestureDetector( onTap: //Tapped onDoubleTap: //"Double Tapped onLongPress: //Long Press onLongPressEnd: //Long Press ends onPanStart: // Pan Started onPanUpdate: //"Pan" + paninfo.delta onPanEnd: //Pan Ended onHorizontalDragStart: //"Drag" + draginfo child: Padding( padding: const EdgeInsets.all(48.0), child: InkWell( child: Card( child: Center( child: Text( currentGesture.toUpperCase(), style: TextStyle(fontSize: 20, fontWeight: FontWeight.w700), ), ), ), ), ), ); 
See videohttps://twitter.com/erluxman/status/1260789123452936194​Find all tips here :https://github.com/erluxman/awesomefluttertips

May 14, 2020 at 06:33AM by erluxman
https://ift.tt/2LrwyRI
New post on Flutter Dev Google group:

D/skia ( 4814): Shader compilation error
I've created a simple Flutter 1.9.1+hotfix.4 application using Android Studio 3.5.1. After adding successfully a new virtual device (Nexus 6) and tried to run my app, I got this error: Launching lib\main.dart on AOSP on IA Emulator in debug mode... Initializing gradle... Resolving dependencies...

May 14, 2020 at 06:53AM by Mehdi
https://ift.tt/2Z3gAFo
New post on Flutter Dev Google group:

Create a Textfiles with a Botton
If I have a bot that adds a textfield to a list, I have a problem because of the variables. How can I make it that I always have another variable with onChanged()? And I can retrieve this variable in the right order? I would be happy about an answer.

May 14, 2020 at 08:57AM by Jonas Riesen
https://ift.tt/3dNI469
New post on Flutter Dev Google group:

How do I find out package version
how do I find out there is an updated version of the package or not besides opening the pub.dev website itself?

May 14, 2020 at 11:49AM by Denis Ramdan
https://ift.tt/3dK9FoA
New post on /r/flutterdev subreddit:

Instagram style location picker for uploaded photos.
I'm trying to implement a feature that allows users to upload photos to Firestore. I also try to get the location of the image using IfIdTag. Is there a way to implement a sort of location picker similar to the one used in Instagram in case the user does not have the location data on the image?
void _checkGPSData() async { log("Checking GPS data..."); Map<String, IfdTag> imgTags = await readExifFromBytes(File(_imageFile.path).readAsBytesSync()); if (imgTags.containsKey('GPS GPSLongitude')) { setState(() { _hasLocation = true; _imgLocation = exifGPSToGeoFirePoint(imgTags); }); } else { log("Image does not contain GPS data.");} } 
I am finding some location pickers online but they are strictly for google maps it seems.

May 14, 2020 at 11:03AM by skux159
https://ift.tt/3bptoZi
New post on Flutter Dev Google group:

Flutter channel stable is now ahead of channel beta?
I just find this curious... Stable: Flutter 1.17.1 using Dart 2.8.2 VS. Beta: Flutter 1.17.0-3.4.pre using Dart 2.8.1 What's that about? Anyone know? Something go wrong in Flutter release world?

May 14, 2020 at 02:16PM by Wayne Werner
https://ift.tt/2T4k8nb