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

A new Flutter Articles Aggregator
Hello all,​Like most I use several sources to get Flutter dev articles such as Reddit, etc. I found anew one that seems somewhat awesome:​https://flutterawesome.com/​My bias is that my flutterdev articles startingtrending on its front page...

September 30, 2021 at 11:54AM by fredgrott
https://ift.tt/3ijJMkr
New post on /r/flutterdev subreddit:

Prioritisation of notifications in flutter development.
It seems to me that notifications are a prominent part of what makes mobile apps valuable, but flutter doesn't support this well.For instance, having to manually launch an app before notifications will work.It seem to me that Google has dropped the ball on this one.What's your view on this?

September 30, 2021 at 12:50PM by itsastickup
https://ift.tt/3uraCfc
New post on /r/flutterdev subreddit:

Developed a translation application
https://github.com/Aaq007/Translate-App This is a translation application which can translate raw texts and texts from images to desired language. This application uses google ml kit machine learning model under the hood.Any further improvements or ideas are welcome!

September 30, 2021 at 02:10PM by Aaqilsh
https://ift.tt/3m9ymRq
New post on /r/flutterdev subreddit:

How to solve this issue
I tried to casting it got nothing to work, I use the latest version.DecorationImage(                      fit: BoxFit.cover,/// Need to fix ----------------------------------------------------                      image: Image.file(file! as File) as ImageProvider<Object>,                    ),The error is Imagepicker 'XFile' is not a subtype of type 'File' in type of

September 30, 2021 at 01:59PM by Ivan_Boginski
https://ift.tt/3CYzq15
New post on /r/flutterdev subreddit:

This community is great
Some weeks ago I created my first Flutter package, the Weekly Date Picker, and posted about it on this subreddit. I got some great feedback from you guys that I had not thought of myself and have now improved it.

September 30, 2021 at 02:57PM by Ramriez
https://ift.tt/3F4Nt7d
New post on /r/flutterdev subreddit:

Currency TextInput Mask as simple as possible!
https://gist.github.com/thiagoperea/06f898b0302338825570695216397ece​I am using Intl (https://pub.dev/packages/intl) to handle the currency format!

September 30, 2021 at 04:04PM by paladinossaur
https://ift.tt/3zQirfu
New post on /r/flutterdev subreddit:

acceptable | Flutter package which glues Provider and StatefulWidget
Provider is the most famous package for state management on Flutter.I'm sure to say that it's relevant to use Provider for sharing state with multiple widgets.However, on the other hand, what about state for a single widget? We have suitable one - StatefulWidget!My conclusion is understanding pros / cons of both widgets and selecting appropriate one depending on use cases is important.The problem here is that we DON'T have nice mechanism which glues Provider and StatefulWidget.As Providers may NOT provide data which is available as-is at each UIs, each widgets have to convert them so that they fit to be used in each build() methods. But where this conversion should be done?Doing this in build() method would effect app's performance negatively because build() is called at any time when rebuild happens for any reasons.What about didChangeDependencies() method? It's true that this is called only when values of providers (or other depending InheritedWidgets) change, but we CAN'T tell "which dependency is changed?".Therefore, I would like introduce here my experimentally developing package acceptable.acceptable provides AcceptableStatefulWidget which have acceptProviders() method in which we can declare "what data to watch" and "how to accept the data".By using AcceptableStatefulWidget, we can simply clarify the roles of Provider, which provides "raw" data without considering how to be used in each widgets, and State of StatefulWidget, which manages state for its own widget using data provided by Providers.For more detail, please visit Readme page of acceptable and I'll be grad if you try it and leave any feedbacks.Thanks.https://pub.dev/packages/acceptable

September 30, 2021 at 06:19PM by chooyan-eng
https://ift.tt/3CRzDTQ
New post on /r/flutterdev subreddit:

Started learning flutter
Well since I got a laptop capable of running the emulator I have starting learning flutter any advice or something?

September 30, 2021 at 07:19PM by VanshCodes
https://ift.tt/3zTRxTX
New post on /r/flutterdev subreddit:

Is there any good beginner tutorial on creating a simple text editor?
Hello,I'd like to play with developing a simple text editor, supporting hyperlinks, underlined and bold text.I know developing text editors is complex, but, if you know of good intro tutorial, not based on Zephyr, Quill and nor html-editor-advanced, please, let me know.TIA

October 01, 2021 at 12:32AM by GoodSamaritan333
https://ift.tt/3urWTEQ
New post on /r/flutterdev subreddit:

I'd like to ask how to make listview item that navigates to a detailed screen
​I want to make listview that when user clicks on the list item, it will navigate to other detailed page that has a title, a long text and an image. Each listview item has their own respective page(that has title,text and image). But I don't know how to link between the listview ui and the detailed screen. I've been searching for days but I fail to understand how to do (I am a beginner to learn flutter huhu). Any help is kindly appreciated :)These two links are the ui of the listview and detailed screen i have implemented but I haven't linked these two. Pls send helpphttps://i.stack.imgur.com/9kGzb.pnghttps://i.stack.imgur.com/34VTF.png

October 01, 2021 at 02:01AM by Worthy_Aida
https://ift.tt/39WEC9n
New post on /r/flutterdev subreddit:

Flutter 2.5.2 has been released!
Flutter 2.5.2 has been released. I see no news about it anywhere yet, but just ran the flutter upgrade command and downloaded the latest version.EDIT: Digging into the tag on GitHub, the two changes are;Set BUILD_DIR when determining if plugins support arm64 simulators (#90088)'Update Engine revision to 6ac856380fa4f66469552ce986edf59f65f7cd68 for stable release 2.5.2'

October 01, 2021 at 01:36AM by niccholaspage
https://ift.tt/2WvSaWg
New post on /r/flutterdev subreddit:

How to integrate Shopify in the flutter project with Null Safety Please?
I am providing the shop name like: verden-app.myshopify.com, and the storeFrontApiToken(from the private app which I have created), I have allowed read_write permission for all the options as well, help, please?I am just running the given example and want to print data from my storehttps://github.com/nonvanilla-shop/shopify_flutter

October 01, 2021 at 08:37AM by NavidanChitrali
https://ift.tt/3mgmhJX
New post on /r/flutterdev subreddit:

How Major Frontend Libraries Handle i18n
https://ift.tt/2Y1E5QK

October 01, 2021 at 12:08PM by ShadaWehbe
https://ift.tt/3D5le6K
New post on /r/flutterdev subreddit:

App Feedback Thread - October 01, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

October 01, 2021 at 03:00PM by AutoModerator
https://ift.tt/3ioY4QG