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

Any good project ideas that can help me learn intermediate flutter?
Right now I am trying to create clone of Instagram uber and messenger...is this a good item to learn more about flutter? Any good project ideas and if possible their source code and repos?

July 06, 2021 at 04:03PM by BalanceSweet126
https://ift.tt/2Vhgavr
New post on /r/flutterdev subreddit:

Mix: An expressive way to effortlessly build design systems in Flutter.
Hi everyone!Want to share with you all a package that has been using internally to build design systems in Flutter. This has made the creation of consistent, and custom UI components much easier and a very pleasant experience.What is Mix?An expressive way to effortlessly build design systems in Flutter. Mix offers primitive building blocks to help developers and designers create beautiful and consistent UI.MotivationsCreating consistent custom (non-material) UI in Flutter is difficultMaintaining a design system is much harder than building it.Visual attributes should be defined outside of a widget by a composable API shared across the design system.Style consistently with a global themeRespond to changing requirements quicklyCreate adaptive layouts with easePrinciplesDevelopment efficiency is gained by the ease of use, consistency, and reusability, not coding speed.Abstract Flutter API, and not modify its behavior.Composability should be a priority. Mixes, Attributes, Widgets, etc.Designer friendly (use simple standard semantics when possible)ExamplesSimple Mix
final squareMix = Mix(h(150), w(150)); Box( squareMix, child: Text('Square'), ); // You can also use the following: // This way has some downsides. More info soon... squareMix.box(child:Text('Square')); 
ComposabilityExtend Mixes
final cardMix = squareMix.mix(p(20), rounded(20), bgColor(Colors.white)); 
Override Mixes
final redCardMix = cardMix.mix(bgColor(Colors.red)); 
Combine Mixes
final elevationMix = Mix( shadowColor(Colors.black12), shadowBlur(4), shadowOffset(0, 2), ); Box( Mix.combine(cardMix, elevationMix), child: Text('Card With Shadow'), ); 
Conditional Mixes
// If you wan't to change the Mix depending on a condition final conditonalMix = Mix.chooser(isSelected, dynamicMix, redCardMix); 
Dynamic MixesIf you want the card to change color when in the dark mode you can use a dynamic attribute.
final dynamicMix = cardMix.mix(dark(bgColor(Colors.black))); /// Now, when the app is on dark mode the card color will change to `black`. Box( dynamicMix, child: Text('Dynamic Card'), ); // You can also build dynamic flex widgets final flexMix = Mix(gap(20), mainAxis.center); // Adaptive gutter for your flex widgets using media query final adaptiveFlexMix = flexMix.mix( mq.xs(gap(10)), mq.sm(gap(15)), mq.lg(gap(40)), ); 


July 06, 2021 at 06:05PM by leokcta
https://ift.tt/3hl2mZf
New post on /r/flutterdev subreddit:

Developing on a Macbook Air 13
Hello all,I'm looking at getting a macbook air 13, 8 GB RAM. Anyone know what kind of performance I can expect developing and emulating iOS apps on this hardware?

July 06, 2021 at 06:41PM by BIue_scholar
https://ift.tt/3yvATtM
New post on /r/flutterdev subreddit:

Where do I find my iOS ID in Flutter?
I've noticed that Flutter is different in Windows and in MAC. I would like to register a particular App in firebase but I have not found the IO's ID which is not the same as the Android ID. From what I have read, they recommend you using XCode to grab the ID but in Windows there's not this option

July 06, 2021 at 06:26PM by GiuseppinoPartigiano
https://ift.tt/3Ayy393
New post on Flutter Dev Google group:

Getting a postId for many users on FirebaseFirestore
Hello! What I am trying to do is get all the userIds of the users that have saved a specific post (postId) and then erase that post from the database. I do not care who the user is, I only care about whether they have a specific post in their savedPosts. *FirebaseFirestore.instance.collection('us

July 06, 2021 at 07:12PM by Alvaro Gonzalez Rico
https://ift.tt/3wny38m
New post on /r/flutterdev subreddit:

Persisting Data Locally with Flutter | SharedPreferences
https://youtu.be/p21D8dtUnVk

July 06, 2021 at 08:01PM by ITMastering
https://ift.tt/36eAOyi
New post on /r/flutterdev subreddit:

How to Duplicate a Flutter + Firebase Project — Sudden Defrag
https://ift.tt/3wntBGG

July 06, 2021 at 07:09PM by cannotelaborate
https://ift.tt/3hyGmc4
New post on /r/flutterdev subreddit:

Getting an Android Phone for Flutter Dev
Hey folks! Ima get straight to the point. I am mainly an iPhone user but since I am developing flutter apps on Windows environment I am planning to get a cheap Android device to test the apps I'm building since the ANDROID AVD is laggy as projects become large. Looking for some super cheap recommendations. Thank you.

July 07, 2021 at 02:09AM by parteeksj
https://ift.tt/3AKJPNM
New post on /r/flutterdev subreddit:

Command Line Debugging Flutter
I am starting to explore adding flutter support for Sublime Text. Sublime Text now has well supported extensions for Language Server Protocol and Debug Adapter Protocol. Both these protocols are what vscode uses for intellisense code completion, and debugging applications. So Sublime should be able to do most of the things VSCode does with flutter.Ok so step one....trying debugging from the cli to see what the interface looks like, then wrap those cli commands in a Sublime Extension. One problem though.....I seriously cannot find a way to debug flutter from the command line (like set a breakpoint from the command line and then break on it).I am missing something, or is this actually the case??

July 07, 2021 at 03:12AM by scorr204
https://ift.tt/3ym8VR0
New post on /r/flutterdev subreddit:

I developed a mental health related app from my personal experience!
So basically last year I was feeling a bit low. I really didn’t know how to become better since I had never faced this before. I used to not get proper sleep and woke up after having dreams due to my anxiety. So I just started noting what activities I did and whom I did it with in a google doc. Slowly I also started rating how I felt about the interaction. Soon I started to notice a pattern that I felt better when I hung out with some people and when I did certain activities. This way I was able to feel much better than before and I gained confidence that I can control my own mental health. I stopped dreaming as frequently since then. I even built an app for this so that other people can do the same .The app is called Happyer which was made based on the above experience and provides insights into impact of a given activity or friend. The app also has a "Find Therapist" feature using which you can contact our therapists for help.https://play.google.com/store/apps/details?id=com.happyer4life for android https://apps.apple.com/ca/app/happyer/id1537711110 for iOS.I have created a subreddit https://www.reddit.com/r/Happyer/ to help easily address issues/bugs & to allow users to share their happy experiences :)

July 07, 2021 at 05:21AM by Dragonair_fruit1371
https://ift.tt/3xnduKK
New post on Flutter Dev Google group:

any one explain about base 64,
how to upload files to server by json ,how we need to pass image.

July 07, 2021 at 07:40AM by Jayakrishna Chadalawada
https://ift.tt/3yviHjP
New post on /r/flutterdev subreddit:

Best approach for testing flutter app
I have experience in appium and selenium. I know that for flutter, you can either use the flutter test driver or using the appium test driver? Which one is recommended?

July 07, 2021 at 07:18AM by spiderman1538
https://ift.tt/3wo5HLt
New post on /r/flutterdev subreddit:

Speed up writing Flutter Redux code in your IDE
''If you’re developing your Flutter application using Redux, you know that this architecture has many advantages. Unfortunately, like everything, it also has some drawbacks. One of them is the amount of code you have to write for every new widget that wants to benefit from the Redux Store. Today I’d like to show you a nice way for speeding up this process. It’ll be useful for you if you’re using Android Studio, IntelliJ IDEA or Visual Studio Code.''Read the full article here.

July 07, 2021 at 12:04PM by Viruscatman
https://ift.tt/3jNlFMs