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

Check out my Flutter alternative navigator package! See `pub.dev` page for details. Feedback (positive or otherwise) welcome.
https://ift.tt/3DY2Duk

January 05, 2022 at 10:18PM by caseycrogers
https://ift.tt/3t1mHsX
New post on /r/flutterdev subreddit:

Flutter: types of widgets
https://ift.tt/34ffoTU

January 05, 2022 at 11:24PM by Happycodeine
https://ift.tt/3pWuk1C
New post on /r/flutterdev subreddit:

Relative vs package imports in Flutter and Dart
https://ift.tt/335MjKj

January 06, 2022 at 06:41AM by Suragch
https://ift.tt/3HD4ZzV
New post on /r/flutterdev subreddit:

Anybody using Apple M1 chip?
My company bought me a New M1 MAX MBP. This is super cooooool.One annoying thing is that when i run a flutter app in simulator.Everything is running in native. EXCEPT dart process :(Any good news to change this to apple native?​https://i.imgur.com/burFmpJ.png

January 06, 2022 at 11:44AM by gigas02
https://ift.tt/3EUvI9v
New post on /r/flutterdev subreddit:

First app built with flutter
https://ift.tt/3G0HLn2

January 06, 2022 at 04:58PM by DesignerWonder
https://ift.tt/337kXn5
New post on /r/flutterdev subreddit:

Thought About flutterfire_ui package.
Guys recently find out about this flutterfire_ui package which was officially built by the firebase team which looks quite amazing. where you can perform the whole sign-in process in a single line of code.GoogleSignInButton(clientId: Config.clientID)So what does your thought about that just want to know since currently, I was working on my new flutter project where I strictly tried to use clean architecture and bloc pattern so now I am just confused should I use this its make developments so much easy or use the normal method?What you do.

January 06, 2022 at 07:58PM by Prashant_4200
https://ift.tt/3qNEbGc
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