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

Publishing Android Apps to Play Store requires targetSdkVersion 29 or higher from August 9, 2020. But, Flutter currently has targetSdkVersion 28 in it, so when upgarding will there be any breakings?
/r/flutterhelp/comments/in4sj9/have_anyone_uploaded_flutter_app_to_google_play/

September 05, 2020 at 07:14PM by cyberkido
https://ift.tt/35aPFL0
New post on /r/flutterdev subreddit:

Redux Compact: Make Redux fun again!
Hey fellow Flutter developers!I was getting tired of writing repetitive boilerplate code for Redux, so I ended up creating a library that not only reduces the boilerplate, but also makes asynchronous request state management easy, simplifies the folder structure and adds a few useful action methods like chaining.The library doesn't extend Redux in any way, it only consists of a middleware and a reducer. The reducer resolves with a callback function, allowing you to handle your state change in a method called reduce within the action itself. Therefore you can say farewell to your reducers and start enjoying Redux again!Im already using the library in an enterprise Flutter app and would love to hear your feedback!https://pub.dev/packages/redux_compact

September 05, 2020 at 07:09PM by omarwork
https://ift.tt/2DweUf9
New post on /r/flutterdev subreddit:

Is anyone experiencing a flaky functionality using the class InteractiveViewer?
Sometimes I need to perform the pinch multiple times until I can zoom the image. Will it be improved anytime soon? I think without further improvement the functionality is not usable.

September 05, 2020 at 10:04PM by totalschrott
https://ift.tt/2Gs6pCY
New post on /r/flutterdev subreddit:

Advice wanted! Mobile app based on an existing react web app (React/RN and Flutter devs)
Hey guys,I do realize this is not the most unbiased source of info as it's after all the flutter reddit, however, I still want to hear your opinion. Here's my dilemma:I have a react web app, fully working and functional. Now, me and my team are looking to create the mobile app. Of course, being the flutter dev I am, I want it to be done with flutter, and I could diffidently force that to happen. However, having the web app running on react makes me want to say using react native might be a better idea as we will be able to pump out the application much quicker.To what extent is this true? I have no experience in react or react native so I dont know how much time it takes to migrate a react app to a react native app, or if it even is worth it.... Is flutter worth the extra time investment?What do you guys suggest? Please, try to be as unbiased as possible :)

September 05, 2020 at 11:51PM by aguilaair
https://ift.tt/3k2MOYP
New post on Flutter Dev Google group:

Help! help! help!
I really cannot be able to fix this issue, does anybody know the reason? truly appreciate your help. I keep getting the following error when do flutter pub get: Running "flutter pub get" in helloworld... Could not decompress gz stream Connection closed while receiving data, path = '' pub get

September 06, 2020 at 03:24AM by che.ca...@gmail.com
https://ift.tt/3lW8Gqs
New post on Flutter Dev Google group:

URGENT HELP NEEDED FOR FLUTTER BUILD RELEASE
I am facing the below issue with my flutter project. Whenever I run the command "flutter build ios" the below error is being faced. Please guide me a resolution. It is about a week's time that been lost due to this issue. I upgraded to the latest version of flutter then this happend, Error

September 06, 2020 at 04:35AM by Ramneek Kashyap
https://ift.tt/2GwgOxv
New post on Flutter Dev Google group:

await async function on forEach Loop
Hi There, I am trying to upload a Asset List of images to Firebase Storage with a forEach loop, however only the first image of the List ever gets uploaded. I am super new to Flutter, just tying to make a quick app for internal use to assist our media & marketing teams. I have a button that

September 06, 2020 at 06:09AM by Jeremy West
https://ift.tt/3h0U6Kn
New post on /r/flutterdev subreddit:

Looking for collaboration in a NASA based stars & planets research app
Hello friends 👋Recently my friend and I started an open source project: it's a simple app which provides all sort Information about stars and planets.How it works? - Its simple, the app fetch data from NASA api to get information and load it onto the UIProgress? - The app's successfully been able to use data from the api and having a functional UI. But there are still bugs and problems to solve.Requirements for the project? - Know how to use flutter and github (mainly flutter, you can learn more about github and git commands as we go) - Have basic knowledge about Flutter state management and about GetX package (if you don't know about GetX, you can learn later lol it's not that hard) - Active and sociable and friendly 😉 (The most important)Here's the source code for the project, have fun! You can PM me if you want, we are trying to establish a group.https://github.com/gumbarros/kepler

September 06, 2020 at 10:47AM by randomlymadename
https://ift.tt/3lVzqra
New post on /r/flutterdev subreddit:

Generating dart:ffi bindings for C APIs using package:ffigen
https://ift.tt/30DA9n1

September 06, 2020 at 11:16AM by mannprerak
https://ift.tt/3byn7fx
New post on /r/flutterdev subreddit:

Electronics Store App with BLoC pattern and Node.js
https://ift.tt/35hAn6W

September 06, 2020 at 01:45PM by HeisenbergZzzz
https://ift.tt/3i5hKa8
New post on /r/flutterdev subreddit:

FlutterForce — Week 87
https://ift.tt/3304fCc

September 06, 2020 at 02:57PM by flutterist
https://ift.tt/2ZcjjMa
New post on /r/flutterdev subreddit:

IT'S DONE!! Floaty_Chathead Plugin! , Create your own chathead with content like messenger.
Hello everyone!! First of all, i wanna thanks for all the support comments given during the creation of this plugin in previous post. Im happy to announce that the release version of floaty_chathead is live :)pub.dev: https://pub.dev/packages/floaty_headgithub: https://github.com/Crdzbird/floaty_chathead​The functionality are the following:Customize icon of the chathead.Customize the close icon.Customize the close icon background.Dynamic notification of each button from Android to Flutter.Build head, body and footer of the view hosted inside a container that is gonna be displayed when the chathead has been tap.Management State of the bubble

September 06, 2020 at 02:55PM by Ghost_InTheDart
https://ift.tt/33hUwaL
New post on /r/flutterdev subreddit:

A pure Dart implementation of Ed25519
A few months ago, our team open sourced a dart implementation of Signal Protocol. At that time, we encountered some difficulties in finding a suitable Ed25519 library. We did not find Ed25519 with a complete APIs, most of the libraries only implemented the basic sign and verify, unable to satisfy the Signal Protocol.https://www.reddit.com/r/FlutterDev/comments/i0l3as/we_open_source_a_signal_protocol_library_for_dart/At first, we used dart ffi to call Go's cryptography library. Later we discovered that our other signature algorithms may also need to use Ed25519, since this algorithm is highly secure and fast, we transplanted a Go version of it to libsignal_protocol_dart.https://github.com/MixinNetwork/libsignal_protocol_dart/pull/5This was part of libsignal_protocol_dart. Now, because we want to fork a jose library and extend it to support Ed25519, we simply extract the Ed25519 part from libsignal_protocol_dart and make it into a separate library for other projects in the future.https://github.com/Tougee/ed25519Hope you guys like it.

September 06, 2020 at 04:09PM by Tougeee
https://ift.tt/3bxJH7W
New post on Flutter Dev Google group:

How do I use Admob Mediation in Flutter?
I've searched and tried this on Flutter, but nothing worked. I tried to use the admob_flutter 1.0.0-beta.5 and firebase_admob packages, the result was that the ad request went to Admob but the ad didn't show. And after I checked into the mediation account, there wasn't a single ad request on the

September 06, 2020 at 04:29PM by Schwarzer Tenshi
https://ift.tt/2GtRIiM
New post on Flutter Dev Google group:

Web view not working?
Failed to notify a WebView

September 06, 2020 at 04:48PM by TE C-12 Rohan Solanke
https://ift.tt/35c1bFG
New post on Flutter Dev Google group:

Best way to integrate Go functions
It is not clear what the best way to use Go with flutter is? 1./ Dart:FFI is one method but I am not sure this is as memory safe as it compiles Go to a C library. 2./ The gomobile tool generates Java and now Kotlin bindings by default. Is this the best method? 3./ Building a Go binary that

September 06, 2020 at 05:59PM by Kevin Chadwick
https://ift.tt/3bvTqf0