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

(FREE COURSE) Hello World!!! I built a Course on Udemy where I teach you how to Generate Human Faces from a Sketch using Flutter & Python!
In this course I will teach you:· How to build a Drawing App in Flutter that takes in a human sketch and generates a realistic image of a human using the powerful Pix2Pix Algorithm!
· Step by Step guide in building our Generative Adversarial Network in Python
· Build a Flask API in Python to generate images using our Neural Network from our Flutter Application
· Generate Human Faces Immediately!
· Learn how to build the famous youtube algorithm, that PewdiePie, TwoMinutePapers, and other famous youtubers have made videos on (Pix2Pix), in a fun and entertaining way!https://www.udemy.com/course/human-generator-mobile-app/?couponCode=88F6660A253FBC1C539FIf you are passionate about deep learning and want to apply deep learning algorithms to mobile apps or if you want to build your portfolio to get a job in A.I. then this course is perfect for you!

March 06, 2021 at 05:33PM by samboylansajous
https://ift.tt/30l7iE1
New tweet from FlutterDev:

📱 Learn how to monetize a #Flutter app.

Did you miss Zoey & Andrew's talk on monetization strategies for apps built with #Flutter? You're in luck! Tune in on demand to see how you can turn a successful app into a successful business.

Watch 👉 https://t.co/dcd2tppdFk pic.twitter.com/X2Fw0ybCBe— Flutter (@FlutterDev) March 6, 2021

March 06, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1368245016913674250
New post on Flutter Dev Google group:

Method Channel causing app re-initialization
Hi, I currently have a flutter based android app which performs authentication of a user on startup. We store the information in shared preferences so the user does not need to login each time. I have also configured the app to listen for native events coming like action send text (using a

March 06, 2021 at 06:50PM by Mohammed Salman
https://ift.tt/3qnYZlE
New post on /r/flutterdev subreddit:

Flutter Tasks, a rough UI clone of the Google Tasks application.
https://ift.tt/3roFD13

March 06, 2021 at 07:01PM by leodriesch
https://ift.tt/3kR1EmA
New post on /r/flutterdev subreddit:

Flutter-strated with the ecosystem
Luker for a long time.I've been working on an app for about 12 months in what little spare time 2020 afforded. It's not particularly complex, I had a rough concept done in less than a week (and build much more challenging programs at work in other languages).But as I pushed the app toward something really usable - I've been very frustrated with what seems like a poor quality control in the ecosystem. There are new build issues every month even without code-changes on my end. Updating flutter itself changes the behavior seemingly stable widgets (Stack w/non-positioned elements for example). 3rd party libs work, or don't.Yesterday I lost my development partner, who was handling iOS integration, to these frustrations.Even things like basic documentation aren't reliable from the flutter team itselfex: https://imgur.com/a/KgKsmYNI'm spending 80+% of my time dealing with what seems like a alpha-stage ecosystem. It likely would have been easier to develop my app in native code. I'd have been done in 1/2 the time if I'd gone the RN route.I really wanted to like flutter but it's just not there. I want to be wrong about this. I'm super bummed. What am I missing? What's the killer feature that makes this pain worthwhile?

March 06, 2021 at 07:44PM by relativityboy
https://ift.tt/3ed2bOn
New tweet from FlutterDev:

🔷 Featherweight Isolates 🔷

Tune into this #FlutterEngage community talk by @mklin to learn more about the exciting new 🧪 experimental 🧪 feature in @dart_lang and #Flutter that allows you to make use of as many Isolates as you need.

Watch for more 👉 https://t.co/JGjWJYSfYy pic.twitter.com/TGt3AfwIpt— Flutter (@FlutterDev) March 6, 2021

March 06, 2021 at 08:00PM
http://twitter.com/FlutterDev/status/1368275228930015234
New post on /r/flutterdev subreddit:

Those of us who want to learn and build something with Flutter, Can we build this open source app together, while helping each other , working as a team ?
I tried learning Flutter in past with Books and Video tutorials (I did complete 50-60%, read lots of documentation) but all that is lost due to non-usability. Now I'm learning with a project based approach, I guess we must jump in to water to learn how to swim!.So I had this idea where flutter will be a perfect fit.A universal file explorer :- which will let me access and view my videos, images, pdfs and .md notes stored on different devices on a local network, from any single device. Plus we can bookmark favorite locations, stream videos from one dives to other. We will build a local P2P network -- It will be like accessing all our files from all devices we have from single File Explorer. Dart core will be a good match for this.​I'm just looking in to having an experience on how to work in a team, how to document, how to go from idea to breaking down the project and implementing it. We could learn together while helping each other.Notes : This app has to work offline, there won't be anything 'online'. As source is opensource we can trust this app for privacy and stuff!! so any tips are helpful if you are experienced and have other stuff in your plate.We all are fresher in this and want to learn in peer while working as a team.Here is a link to the repo.Feel free to add or update the .md file. We can discuss on Discord more.#missionOpenSource

March 06, 2021 at 08:42PM by dnyand33p
https://ift.tt/3riSSjL
New post on /r/flutterdev subreddit:

How do you use BLoC?
I've been developing with Flutter for 1.5 years now.And I've been using BLoC all the time.It's a great tool, but there are some disadvantages, and I would like to know how you overcome them.How do you handle Forms?
Personally, I create BLoC with single state, which contains all the necessary fields. And use freezed's copyWith.How do you handle highly overloaded screens?
Tutorials are always good on paper. But sometimes (either designer is bad at UX, or business requires it) it's not possible to just write single bloc per item on the screen - I personally needed to store some common information in parent BLoC, and create multiple child BLoC, which are listened by the parent.How do you struggle with name collisions?
When project is large, you can't name states as Loading, Success and Error. You always have to prefix them with the name of the BLoC. The larger the project, the longer the prefix.Partly, freezed solves this problem with unions, and here comes the 4th question.Is inconsistency acceptable in your projects?
Yes, freezed is awesome for defining states and events, but sometimes you need to react to the same state twice, but freezed automatically overrides equality for union's parts. So I always ended up with defining old-way states with prefixes, creating inconsistency in codebase.

March 06, 2021 at 08:38PM by AlexandrFarkas
https://ift.tt/3roLu6u
New post on /r/flutterdev subreddit:

How to migrate to null-safety in flutter 2?
I just published - "How to migrate to null-safety in flutter 2? " Link#flutter #flutter2 #flutter2migration #flutterNullSafety

March 06, 2021 at 09:21PM by preetsc27
https://ift.tt/3sWaP8d
New tweet from FlutterDev:

💙 In Flutter, you have all the control. @SuprDeclarative demonstrates how to turn a regular Text widget into a custom SelectableText widget with a caret, highlight region, drag selection, and a custom cursor, all in this 30 minute community talk.

📺 → https://t.co/BpK7KZmYxT pic.twitter.com/6hFWzlcMIP— Flutter (@FlutterDev) March 6, 2021

March 07, 2021 at 12:00AM
http://twitter.com/FlutterDev/status/1368335635426275332
New post on /r/flutterdev subreddit:

HMR is not yet in flutter v2?
I had the experience to dev and publish several simple ios/android app with flutter. But the web is first to me. I heard the web is stable since v2. I tried and played a little bit but seems it doesn't support HMR. Every time I saved my code, the whole dev page is refreshed.HMR is not yet?

March 07, 2021 at 01:39AM by moondaddi80
https://ift.tt/30jcPuX
New post on /r/flutterdev subreddit:

How can I add Flutter web support in my existing Flutter project?
I just published How can I add Flutter web support in my existing Flutter project? [Blog Link](link.medium.com/OI9rUE1Gmeb)flutter #Flutter2 #flutterweb #web #flutterdev #flutterdevelopers

March 07, 2021 at 01:22AM by preetsc27
https://ift.tt/3rBiTLv
New post on /r/flutterdev subreddit:

Flutter app on esp32
Hey, I'm a super newbie and I'm trying to see if it's possible to deploy flutter apps on an esp32 with an LCD screen. That means to use the app directly on the lcd screen like a tablet kinda thing that only runs 1 app.Thanks for your helps and sorry in advance if my question is too vague

March 07, 2021 at 02:59AM by hakar266
https://ift.tt/2OctwWl
New post on /r/flutterdev subreddit:

How can I add Flutter web support in my existing Flutter project?
https://ift.tt/3rnZhtT

March 07, 2021 at 02:26AM by preetsc27
https://ift.tt/3ejK2hY
New tweet from FlutterDev:

Faster release builds & better integration testing.

The new 'flutter build ipa' command and 'integration_test' package makes testing on real devices easier. Watch @kevsuda & @martinjeret demonstrate these features in this community talk.

Tune in 📺 → https://t.co/2AkraTvHlX pic.twitter.com/G1PeO8xHU6— Flutter (@FlutterDev) March 7, 2021

March 07, 2021 at 02:59AM
http://twitter.com/FlutterDev/status/1368380811897094146
New post on /r/flutterdev subreddit:

Flutter web stable release is good?
So how is it going for latest stable release so far guys?

March 07, 2021 at 08:05AM by sangkaraka
https://ift.tt/3bnDltB