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

Prooreading Your Articles/Blog post
Hi everyone! Native English speaker from Cape Town here. I want to start doing proofreading with a special focus on programming blog posts (think Medium or your own blog) but any sort of posts are welcome. I will work for $5 per page/post! Those who are interested please let me know. Thanks!

September 03, 2020 at 09:33AM by RodwinZA
https://ift.tt/3hVMpXc
New post on /r/flutterdev subreddit:

Integrating C library in a Flutter app using Dart FFI
https://ift.tt/34Pc4NQ

September 03, 2020 at 09:16AM by yyyt
https://ift.tt/2EWcqam
New post on /r/flutterdev subreddit:

Let me proofread your blog post/article
Hi everyone! Native English speaker from Cape Town here. I want to start doing proofreading with a special focus on programming blog posts (think Medium or your own blog) but any sort of posts are welcome. I will work for $5 per page/post! Those who are interested please let me know. Thanks!

September 03, 2020 at 10:00AM by RodwinZA
https://ift.tt/3bmb4Sp
New post on /r/flutterdev subreddit:

Writing Plugins/Native Modules?
Hi,I got into a job where we write plugins using native modules. There are teams for Flutter and RN, and since I know both I would like to know which one is less painful for writing native plugins, Flutter or RN. Thanks in advance.

September 03, 2020 at 11:42AM by utarit
https://ift.tt/354Lhgn
New post on /r/flutterdev subreddit:

Dart - Null-aware operators - Coflutter
https://ift.tt/3gVe35l

September 03, 2020 at 11:46AM by tranhuyphuc
https://ift.tt/2ELKlmB
New post on /r/flutterdev subreddit:

Name for a Flutter podcast.
Hey Flutter community, I need your help in naming my podcast. Any suggestions?Can't promise upfront but I will try to honor that good name 😉

September 03, 2020 at 12:42PM by erluxman
https://ift.tt/3hWj13h
New post on /r/flutterdev subreddit:

Does anyone know any resources that gives very specific and practical design considerations?
Making an app for my company. I remember seeing some very specific and practical design considerations before last time.Something like "Make your call-to-action buttons rounded because users are 30% more likely to click on them". Something like that.The resources I'm reading through right now don't really advice on specific design considerations - they mention things that are more general like "focus on making the website simple"Really appreciate your help. Thanks!

September 03, 2020 at 12:49PM by Surelyok
https://ift.tt/2QTZrsg
New post on /r/flutterdev subreddit:

The Javascript/Webpack crackhouse of complexity needs to die
I've been working on Flutter web for a while and it's amazing. You write code, compile it and it works.I had to edit one of my old VueJS projects tonight, and it was an absolute nightmare. The last time I completely updated it was 6 months ago, and that's long enough to require major effort to get it updated to the latest.First I tried to update npm and it failed and deleted npm, so I had to reinstall it. Just finding the right installer for linux was ridiculously difficult. Why can't there be a simple apt install for node? And why isn't it on the npm website. You have to dig around to find the right instructions for debian in my case.Next, I update my packages, but as usual nothing worked and I had to and debug things.Then I updated my global packages and something went wrong and I had to manually delete bad packages and reinstall things.It's amazing that the JS world is still struggling with all these different module types. Why is importing code so incredibly complex and why is it constantly changing? I still don't understand all this stuff. Is it a csmodule or an esmodule or a umd module? I don't really care, just import the f**king code!Then I had a problem with my webpack config file which is this long cryptic mess of nonsense.I eventually just gave up and reverted some of my packages to avoid editing the webpack file.Why would anyone think this is a viable solution to software development?Thank God for Flutter. Never again will I make a website with Vuejs, React or Javascript. In the time it took to update my vueJS project I could have created an entire website in Flutter.

September 03, 2020 at 01:42PM by sfvr
https://ift.tt/2QPSWa5
New post on /r/flutterdev subreddit:

Inserting, removing elements with animation
Hello, let's assume the following widget structure:
ListView Some other child 1 MyCoolChild Column TopPart BottomPart Some other child 2 
once a user presses a button I would like this the following structure
ListView Some other list child 1 MyCoolChild Column TopPart MiddlePart BottomPart Some other list child 2 
I would like to make it a nice animation, all the parts below MiddlePart slides down - at the same rate that MiddlePart appears, and MiddleParts also appears with fade. Pressing the button again reverses animation.What's the best widget/collection of widgets and state to handle this. Please consider that animation may last some time, and user can press a button again even though animation hasn't fully completed. Or perhaps different button shows slightly different MiddlePart.

September 03, 2020 at 02:08PM by chrisrutkowski
https://ift.tt/3jFHytM
New post on /r/flutterdev subreddit:

Entity Repository based on Hive
Hi guys,I have created a package entity_repository, which uses hive under the hood to persist data and it is kinda inspired by the freezed package and how freezed uses the abstract classes and constructor redirect.The main purpose is to generate the entity model, which can also contain other models not only lists from the same type. On lookup or saving, it will resolve automatically.https://pub.dev/packages/entity_repositoryIf you are interested, please check it out and let me know what you think. Be aware, it is in an experimental state.

September 03, 2020 at 01:56PM by Puzzleheaded-Loan937
https://ift.tt/3jIplMd
New post on /r/flutterdev subreddit:

flutter-timeline 0.1.x release
Hi guys! 🔥 I've introduced flutter_timeline few weeks ago, and thanks to your reactions, i was able to keep update it. just now, new version of flutter-timeline 0.1.1 has been released, which is accpeted for productio application. such features like offset and anchors added. check the package out, if you like it! starring it on github helps me a lot!​thanks!​https://github.com/softmarshmallow/flutter-timeline

September 03, 2020 at 02:45PM by softmarshmallow
https://ift.tt/3bmoWfi
New post on /r/flutterdev subreddit:

Need help get back to Flutter (architecture) after 9 months break
I've built a Flutter app in the past but had to work on other projects since 9 months. I'm trying to get back to it but feel a bit lost at the moment.I've used custom BLoC to built my app, each of them provided multiple Sink and Stream to communicate with the views. I used a very old version of rroussel's provider library and never updated since then, when the code used to look like this :
child: StatefulProvider<SignInBloc>( valueBuilder: (_, bloc) => bloc ?? SignInBloc(mainBloc.setUser), onDispose: (_, bloc) => bloc.dispose(), child: MaterialApp( 
I've read doc related to his new version of provider, which totally changed, it doesn't seems to use Sink and Stream and other asynchronous operators anymore. I've checked flutter_bloc, which seems to have matured nicely, but it only provide one stream in and one stream out so I would need to do a lot of changes to migrate.What did I miss? What direction should I look at to get back to it?

September 03, 2020 at 02:41PM by CrisalDroid
https://ift.tt/3hVhr1n
New post on Flutter Dev Google group:

Firebase Phone Authentication
Hello, I developed an android app with phone number authentication, when I published it on the play store it didn't work anymore. In the debug version I received the code via SMS once and it didn't work anymore. With this phone number it works, it just doesn't work with my real number as a

September 03, 2020 at 03:45PM by Israel Ribeiro
https://ift.tt/2DvGVni
New post on /r/flutterdev subreddit:

Awesome Flutter Animations
https://ift.tt/31TTj9M

September 03, 2020 at 04:14PM by tledrag
https://ift.tt/3lJD5Ih
New post on /r/flutterdev subreddit:

An alternative to the Pocket app
Hi! I'm currently working on a simple app that uses the Pocket API to show and manage the saved posts or articles of this service.My main goal is to make it visually appealing and easy to use.Does this idea have potential?Thank you in advance for opinions

September 03, 2020 at 04:37PM by RedJohn27
https://ift.tt/31ULfpq
New post on /r/flutterdev subreddit:

Moodly - My Summer Fling with Flutter
https://ift.tt/2Z5zScp

September 03, 2020 at 05:06PM by JankyCS
https://ift.tt/3gXXcip
New post on /r/flutterdev subreddit:

Please upvote this Github issue to let the Flutter team know we want the iOS jank caused by Metal to be fixed
Issue here:https://github.com/flutter/flutter/issues/60267The flutter team prioritize issues by their upvotes, so please help upvote this so we can get a smoother experience on iOS devices.Some background on the issue of jank in iOS devices due to poor metal support at the moment: https://twitter.com/couttsdev/status/1290661691215183873

September 03, 2020 at 05:55PM by bees4thees
https://ift.tt/31V34EQ
New post on /r/flutterdev subreddit:

When you need to store your data both locally and remotely, what are your favorite local and remote/cloud storage preferences when developing a Flutter app? In which cases you needed to store your data on both sides and how you handled it?
In which cases you needed to store

September 03, 2020 at 07:06PM by shdw2x
https://ift.tt/3bpntoA
New post on /r/flutterdev subreddit:

FLUTTER JUST GOT 100K+ STARS ON GITHUB!!
flutter is the future (it already is) for general app development. can't wait it to take over the web market too!​https://imgur.com/2NArQIShttps://imgur.com/QAl8Xnv

September 03, 2020 at 07:00PM by softmarshmallow
https://ift.tt/3gYkSmN