Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New tweet from FlutterDev:

😍 The next Flutter challenge is HERE 💙 Test your Flutter skills, creativity, and get involved with the community in the #FlutterPuzzleHack! Submit your masterpiece for a chance to win BIG. 🕹👀 Learn more 👉 https://t.co/fH3oUUOyw4 https://t.co/3mkK0Ue2iF— Flutter (@FlutterDev) Jan 6, 2022

January 06, 2022 at 09:15PM
https://twitter.com/FlutterDev/status/1479184966927872000
New post on /r/flutterdev subreddit:

Looking for a feature from Google weather app.
Since you can't post images here, if anyone has a the Google app, the weather on there, if you scroll all the way to the bottom, it shows a chart showing sunrise and sunset times. I know there is a package to get the times, but I'm looking for a package that has a chart like this.

January 06, 2022 at 10:08PM by abruzzo88
https://ift.tt/3GiBvHv
New post on /r/flutterdev subreddit:

puby | Run pub commands for all sub projects in the current directory recursively
https://ift.tt/3JMldbO

January 06, 2022 at 09:49PM by Rexios80
https://ift.tt/3q1voBn
New post on /r/flutterdev subreddit:

Scope package providing Dependency inject released
Despite the version no. this is the first release of the Scope package.https://pub.dev/packages/scopeScope provides dependency injection (DI) for Dart applications allowing you to inject values into a scope and then 'use' those dependencies from any method (or constructor) called within that scope.Scope is not a replacement for the likes of Provider. Provider does DI for your BuildContext whilst Scope provides DI for your call stack.For Java developers Scope provides similar functionality to a thread local variablesAuthors: Philipp Schiffmann [philippschiffmann93@gmail.com](mailto:philippschiffmann93@gmail.com) S. Brett SuttonScope is a reimagining of Philipp's zone_id package. All credit goes to Phillipp's original implementation without which Scope wouldn't exist.Full doco at: https://scope.noojee.dev/The best way to understand Scope is with an example:
 void main() { /// create a Scope Scope() /// inject a value ..value<int>(ageKey, 18) /// run some code within the Scope ..run(() => a(); } void a() => b(); /// `use` the injected value void b() => print('You are ${use(ageKey)} years old'); 


January 06, 2022 at 09:25PM by bsutto
https://ift.tt/3G1I8xu
New tweet from FlutterDev:

RT @AndroidDev: 📢 Opportunity for women developers! #WomenDeveloperAcademy in Europe is looking for new participants. The program offers the opportunity to gain new skills and network with other women developers. Apply 👉 https://t.co/v6NEikVant https://t.co/Rt0tU1Zkbt— Flutter (@FlutterDev) Jan 6, 2022

January 07, 2022
https://twitter.com/FlutterDev/status/1479226273159426049
New post on /r/flutterdev subreddit:

Connecting NFTs to physical products by an NFC tag on the Solana blockchain with Dart / Flutter
I'm interested in spinning up a collection of NFTs on Solana where the NFTs are connected to physical products via an NFC tag. What this means is each NFT has a unique url or asset contract, when you scan the NFC tag it directs the scanner to the NFT.​Ideally I'd like to do this how Adidas does it where they "burn" the NFT when you redeem for the physical product but I don't want to get too in over my head if that's too complicated. I don't want to create another NFT after the NFT is burned either.​I've seen several on Ethereum but am more interested in the Solana use case. Does anyone have any experience building these or have seen similar collections on Solana?​I've seen that Metaplex is an accelerator for React for spinning up NFTs but I'm unsure if anything exists for Dart / Flutter?

January 07, 2022 at 01:31AM by matt_hatt3r
https://ift.tt/3zx96uD
New post on /r/flutterdev subreddit:

Flutter BLoC (v8): How to Fetch Data From an API? - 2022 Guide
https://ift.tt/3qOYNxO

January 07, 2022 at 06:54AM by Red_Star25
https://ift.tt/3G4bHyF
New post on /r/flutterdev subreddit:

A question for Flutter experts
I'm ready to start my journey as a flutter dev, the only thing that's holding me back is not having any idea of implementing advance "data-structures" like (stack, linked-list, graph etc) in my Flutter application because there isn't a single tutorial explaining how & I can't afford hiring a teacher.𝗤𝟭• Are all the popular DSs available in Dart and with good documentation ?𝗤𝟮• If Q1's answer is 'NO' then Can i implement these DSs in Dart all by my own as a beginner ? (I guess I'm someone in middle of the beginner & intermediate stage)

January 07, 2022 at 07:16AM by revolutionizer019
https://ift.tt/3q0oexp
New post on /r/flutterdev subreddit:

Dart type you have NEVER used
https://ift.tt/3f2iaOu

January 07, 2022 at 10:27AM by we_are_metizsoft
https://ift.tt/3JQRA9q
New post on /r/flutterdev subreddit:

How to debug in-depth the performance of your Dart code in a Flutter app.
https://vincentjouanne.com/garden/how-to-debug-the-performance-of-your-dart-code-using-flutter-devtools

January 07, 2022 at 11:51AM by Normal_Razzmatazz_79
https://ift.tt/3q58ysU
New post on /r/flutterdev subreddit:

Testing GoRouter navigation
100% Coverage can be tricky to obtain. Discover how to tackle your GoRouter tests!https://guillaume.bernos.dev/testing-go-router/

January 07, 2022 at 11:48AM by BeGuillaume
https://ift.tt/3G6LFdR
New post on /r/flutterdev subreddit:

A solution for the first flutter challenge
Two days ago, I announced a GitHub-hosted site for hosting short and easy, yet interesting flutter challenges.Today I published a solution for the first challenge, and I would very much like to know how you feel about this solution and how it is presented. I aimed for something very focused on the challenge and as short as possible.I like that I could link to some DartPads in the end, so people can see the code running, but I am not happy to put everything in one single file in DartPads. I imagine it will become even a more serious problem when more code is needed. So if you have a better idea, let me know.Also, I would like to know how you feel about publishing the challenge and then waiting a few days before posting any solution. Personally, I think it makes the challenge more fun, but it only works for people who are doing the challenges when announced. It has no effect for those who are attempting to do older challenges. Also, it may become a bit of an annoyance if someone completed the challenge and is eager to view the "official" solution but still has to wait for a couple of days for it to be published.

January 07, 2022 at 11:22AM by __RGgt__
https://ift.tt/3n4raHp
New post on /r/flutterdev subreddit:

GoRouter: Testing the most common use cases
https://ift.tt/3FaMjGg

January 07, 2022 at 03:02PM by BeGuillaume
https://ift.tt/3G46Tt6
New post on /r/flutterdev subreddit:

App Feedback Thread - January 07, 2022
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

January 07, 2022 at 03:00PM by AutoModerator
https://ift.tt/3F83zvw
New post on /r/flutterdev subreddit:

Easily add subscriptions with FlutterFlow + RevenueCat
https://ift.tt/3HHNLRP

January 07, 2022 at 05:30PM by rab_eye
https://ift.tt/3q2lfo2
New post on /r/flutterdev subreddit:

Has anyone integrated with iOS SharePlay?
I’m wondering if it’s possible? If so, anyone have experience with how it’s working? Would we use a method channel to get this working?

January 07, 2022 at 08:21PM by riveraj33
https://ift.tt/3zz8i8k