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

Are the docs the best learning resource?
I need to learn Flutter for my new job. Since I start very soon, I need to learn the essentials fast and well. I know C++, JS and Go, and I've played around with SwiftUI and React before which are similar in principle, so it shouldn't take long for me to grasp the concepts at least.After looking at other threads, the consensus seems to be that the Flutter Apprentice book is the most up-to-date and therefore the best resource. It is true that some of the Udemy courses are still outdated despite their changed titles (I have free access to a bunch of them and Academind just has like 1 or 2 extra videos explaining the changes). However, I'm not sure I'm liking the book so far. I'm only a few chapters in, but I feel like I'm copypasting a bunch of code snippets instead of learning how to build stuff myself. It's a "learn by doing" kind of book, which is OK, especially if you're a beginner, but there seems to be more "doing" than "learning". I wonder if I'm better off just reading the docs and building my own apps myself.

December 03, 2021 at 11:56PM by Reddit1396
https://ift.tt/3xSgb8a
New post on /r/flutterdev subreddit:

Insanity! NotNull and Type promotion?! Time to know Binding expressions
I was just digging some proposals in the Dart language repo and found this gem: Binding expressions.https://github.com/dart-lang/language/issues/1210If I understood correctly, it would solve our problems with notNull and type promotion. Check these examples:(the author has updated the proposal to use @, which I am using below)```dart if (obj.@prop != null) print(prop); // prop local and not nullif (obj.@prop is Foo) print(prop); // prop is Foo// Naming the first element of an array if (obj.elements@i[0] != null) print(i); // i is local and not null// Nested property: obj.nest.deepProperty if (obj.@nest?.@deepProperty is Foo) { print('$nest is not null'); print('$deepProperty is of type Foo'); } ```IMHO this would be an awesome feature to the language!What do you think?
Don't forget to thumbs up the issue if you liked it!

December 04, 2021 at 03:09AM by bradofingo
https://ift.tt/3djz9Ls
New post on /r/flutterdev subreddit:

📱Flutter In Mobile Device📱
Isn't a good idea to build a vs code for mobile to develop flutter on mobile device and run our apps with our real device ?Well I'm really interested if Google community build this such a perfect project. That help anybody anywhere with any kind of android mobile device to learn flutter, develops apps, run smoothly his/her apps in real emulator that is his/her device and become easily a 💥flutter or android developer💥.Well I really want to suggest them, but I haven't known where could I say this !!🤔What do you think 🤔View Poll

December 04, 2021 at 05:55AM by RedditRedditi
https://ift.tt/3EpjMgu
New post on /r/flutterdev subreddit:

Create Glassmorphism Effect in Flutter
https://ift.tt/32MrAe7

December 04, 2021 at 07:12AM by rrtutors
https://ift.tt/3oj0io6
New post on /r/flutterdev subreddit:

When Flutter bundle for M1 will be shipped with arm64 Dart? Why they don't ship it already if it's available standalone for quite long time already?
Dart has arm64 version for quite a long now, but making "flutter upgrade" still keeps Intel version of Dart SDK. I know it can be switched manually by replacing SDK, but o cannot understand why they still don't ship it out of the box?

December 04, 2021 at 09:40AM by trustmePL
https://ift.tt/3xWZTuS
New post on /r/flutterdev subreddit:

unpubd - private package repo beta
I've just released a beta of unpubd which is essentially an installer for the unpub.Unpubd allows you to run a local dart package repo so you can publish packages internally.Unpubd runs a pair of docker containers (mongo and unpubd).The key advantage of unpubd is that it is quick and easy to setup .Install docker and docker-composepub global activate unpubdunpubd installunpubd up --detachYou now have a package repo up and running.To use it replace dart pub <command> with unpub <command>For flutter devs replace flutter pub <command> with funpub <command.Check the README for details.https://pub.dev/packages/unpubd

December 04, 2021 at 10:58AM by bsutto
https://ift.tt/3ol9oAz
New post on /r/flutterdev subreddit:

Theseus Navigator Demo app
https://ift.tt/3Iiyfx4

December 04, 2021 at 12:00PM by echedev
https://ift.tt/3DnlVrE
New post on /r/flutterdev subreddit:

Course that show you best practices?
Hey!I see a lot of tutorials about UI and connect to firebase tutorials. But very very few about best practices to get the best performance. Can you recommend some or some list of topics that are important to know before starting an app?Cheers

December 04, 2021 at 11:38AM by FreshkyFresh
https://ift.tt/3IfzBZz
New post on /r/flutterdev subreddit:

Material You and Brand Semantic Colors, A Solution
OkayCan use this lib to get MD3 HCT colors:​Material Color Utilities​To get a core palette and generate the 5 color roles, etc.​To then blend with the 3 Brand color inputs we have to use the blend feature of the same library, the source code and explanation is here:​MCU Blend class​Artilce will be posted later today!

December 04, 2021 at 01:04PM by fredgrott
https://ift.tt/3y1xLGY
New post on /r/flutterdev subreddit:

Semanttic Custom Colors in Material You In FLutter
Yeah MD3 support ofr Flutter is late!Here:Semantic Custom Colors IN material You​​It talks about custom colors added to dynamic colors to get full hamronized UI theme colors.​Any guesses who we do this? I already have understood how to use this lib:Material Color UtiltiesTo get the core palette based on an input color so it obviously should be re-using that concept and combining both the user generated dynamic color seed palette combined with the semantic brand palette.​My thinking is that in fonts we had a merge function, maybe there is one for argb ints from color somewhere?

December 04, 2021 at 12:58PM by fredgrott
https://ift.tt/31pkoEx
New post on /r/flutterdev subreddit:

I've rewritten my language learning app for Japanese made with Flutter, a video player, book and manga reader and more - with support for Chinese and Korean, OCR via Google ML Kit and more!
https://ift.tt/3DhFLoc

December 04, 2021 at 12:34PM by ArtisanLRO
https://ift.tt/3rAAuWo
New post on /r/flutterdev subreddit:

Way to disable Drawer CLOSE gesture?
Pretty much what the title says. I know about OPEN gesture parameter for Scaffold, but is there a way to disable gesture for closing the drawer?Thanks

December 04, 2021 at 12:15PM by Zippka224
https://ift.tt/3DA9itz
New post on /r/flutterdev subreddit:

Creating Full Width Button in Flutter The Right Way - FlutterBeads
https://ift.tt/3rwule1

December 04, 2021 at 01:33PM by pinkeshdarji
https://ift.tt/3IhhqTd
New post on /r/flutterdev subreddit:

Need your opinion on Food Delivery System
Hey guys,I am Professional full stack engineer working with multiple JS frameworks. I started following flutter since it's launch and I have been working on small projects in free time.Recently I got a freelance opportunity to develop a fully working food delivery app (similar to ubereats, swiggy or Zomato) with features like real time tracking (on maps), coupons, sorting, filtering, etc I found out that I need to write 3 apps. client app, resturant app and delivery guy app. With some sort of portal for admin too. There's no UX available I need to do everything end to end.I didn't worked on production level application with flutter till now. This would be first one, so what timeline can I suggest ? (Considering I will be learning and doing the implementations) Whats the budget should I ask ? (Indian rupees)The client is expecting dates like fully working system within 1 and half month. Is that doable ?And also please share any helpful resources which can be handy for implementing the system.Thank you in advance :)

December 04, 2021 at 06:00PM by someshthakur
https://ift.tt/3lAwKjT
New post on /r/flutterdev subreddit:

Flutter with Artificial Intelligence
Hey guys! I'm wondering about how can I use artificial intelligence with flutter and mobile programming? What is the most efficient way? Like, is there any library of flutter, or using python as an API is good? Is there any documentation or course or video I can use to learn this stuff? Thank you!

December 04, 2021 at 09:52PM by hasancagli
https://ift.tt/3GkpT6p