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

How to Reduce the Size of Your Flutter Package
https://ift.tt/KXe8xdr

February 22, 2022 at 05:32PM by maco6461
https://ift.tt/L9E0feQ
New post on /r/flutterdev subreddit:

Should I switch to MacOs.
Hello,I currently use a Dekstop Pc with an Amd Ryzen 7 1700x and a GTX 1080. The problem is I want also to program my Apps to IOS. So I need MacOs.I have tried to emulate MacOs but this is not working really well on this system.In the next year, I need to go often abord so it a Macbook would be the better choice. The problem is, I never had a MacBook so I don't know how good the performance is. Will I be disappointed with a MacBook Air with 16Gb Ram or will this work fine.​Mainly I use my Pc to program Flutter and sometimes do a little bit of Video editing but only basic stuff.I would love to hear your opinion.

February 22, 2022 at 06:31PM by Marc_4k
https://ift.tt/8UvBw13
New tweet from FlutterDev:

💡 How many Flutter users are using Flutter as part of their main job?— Flutter (@FlutterDev) Feb 22, 2022

February 22, 2022 at 11:02PM
https://twitter.com/FlutterDev/status/1496244012189167617
New tweet from FlutterDev:

The answer is 56%! 20% are using Flutter for personal projects, and 11% are using Flutter to expand their skill set. Learn more ↓ https://t.co/E36dMMq57G— Flutter (@FlutterDev) Feb 22, 2022

February 23, 2022 at 12:18AM
https://twitter.com/FlutterDev/status/1496263194935177216
New post on /r/flutterdev subreddit:

Why would companies choose ReactNative over flutter for cross-platform development?
Flutter is a game-changer! The designers of Flutter didn't see React or Xamarin or Ionic as their competition, but saw Native as the competition! It's light years better.Unfortunately, I am seeing most big tech companies like to adopt React Native.Most of the high-paying Jobs are React.Any reason why React is chosen? I have never used react so I don't know.

February 23, 2022 at 04:17AM by mevlix
https://ift.tt/OFtBGCf
New post on /r/flutterdev subreddit:

Is there a performance hit on using multiple SliverToBoxAdapters?
Just wandering if it is good practice to use multiple SliverToBoxAdapters in a CustomScrollView or use one Adapter and use a Column inside it to handle multiple widget. Does using multiple adapters have a performance hit?

February 23, 2022 at 10:00AM by sachcha90
https://ift.tt/8sW0IRm
New post on /r/flutterdev subreddit:

How can I downgrade Flutter version 2.8.1 to 1.22.6? Is it possible?
I'm currently working with the flutter updated version (2.8.1), but I need to downgrade to a lower version. When I tried, it showed a stable version not available. Could anyone suggest me any ideas?

February 23, 2022 at 11:55AM by Shanmathi_S
https://ift.tt/w6JQHnA
New post on /r/flutterdev subreddit:

Flutter: Freelancer wanted!
I and My team are a beginner in flutter. Could anyone guide us in our learning?

February 23, 2022 at 12:50PM by Sneka_S
https://ift.tt/Eb9qOgi
New post on /r/flutterdev subreddit:

Probably a stupid question
With an idea in mind and starting a project fresh. Knowing that you want to target, web and mobile devices.Do you start with one platform web or android or iOS. Then the next and the next. If so would you start web or mobile?Or do you start with the basics, UI navigation or something and test across all platforms and then next stage.I understand the concept of one codebase for all platforms but in my experience this doesn't always work out great and tweaks etc are inevitable.

February 23, 2022 at 12:26PM by b0atBuy3r
https://ift.tt/ZDevAQq
New post on /r/flutterdev subreddit:

Get notified when you’re close to a specific place.
Hello! I created a collections on firebase with all the localisations of touristic spots. I now want to notify the users when he’s close to one of these places. How do I fetch the data from firebase and how do I use it with the user current localisation to trigger the notification ? Any links ? Ideas ?

February 23, 2022 at 04:13PM by International_Ad1881
https://ift.tt/WBVAlby
New post on /r/flutterdev subreddit:

What I learned building a Flutter app for 5 platforms
Hey everyone! Wanted to share out a blog post I wrote up recently summarizing my experimenting with Flutter & Dart this past year to build a cross-platform app on iOS, Android, desktop web, mobile web and as a Chrome extension.Would be happy to chat about any questions or feedback folks might have on some of the things I go over. Happy coding!https://blog.pollyn.app/posts/2022-02-23-flutter-five/

February 23, 2022 at 04:49PM by ameridanreynolds
https://ift.tt/Sc0PwEA
New post on /r/flutterdev subreddit:

Should Flutter be my main or backup?
Flutter is a great language with my experience so far. However, finding a job or opportunities is harder than other languages—specially the number of them. So should I change my main to another language that is easier to find a job? What have you done so far?

February 23, 2022 at 04:19PM by gokser
https://ift.tt/SGIx2sr
New tweet from FlutterDev:

🙌 Keep up the great work, @flutter_adam! #FlutterPuzzleHack https://t.co/DYLpQB0or6— Flutter (@FlutterDev) Feb 23, 2022

February 23, 2022 at 05:00PM
https://twitter.com/FlutterDev/status/1496515191881748485
New post on /r/flutterdev subreddit:

Would this `local_data_manager` package be useful to publish to pub.dev?
TL;DR: take a look at this package, let me know if it seems useful: https://github.com/antholeole/local_data_manager/blob/main/README.mdHi there! I seem to find that there's a lot of utilities I carry over from project to project, and decided it's about time I standardize them into packages.But before I go through all the work of writing CI/CD, fully testing every corner, I'd like to ask the community if this is something that they would see useful, or if there are already existing solutions.the problem for me is that I use path_provider all the time to store data locally, but I don't like three aspects:It isn't type-safe: I have to go through the same boilerplate of reading the file, converting it to Map<String, dynamic>, and then calling toJson. since I do this every time, I've abstracted it in an easy API.path_provider isn't supported for web, but all I really care about is the persistence functionality. Since shared_prefrences uses a solid persistence backing in web, I always default to using it when writing to support web.Kind of falls into point one, but I do this for every project. This means that it's a well abstracted idea that might be useful in the wider Flutter communities projects.Here's the readme for the github if you could take a look and let me know your thoughts:https://github.com/antholeole/local_data_manager/blob/main/README.mdI'm also thinking about integrating it with freezed or similar so that you can just add a @persistedSingleton annotation to a class and then have the save(), delete(), load() functions automagically generated.Thanks!View Poll

February 23, 2022 at 05:21PM by SnooPears7079
https://ift.tt/69Vqlp7