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
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
reddit
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...
New post on /r/flutterdev subreddit:
Riverpod's StateNotifier Tutorial
https://www.youtube.com/watch?v=87KC5TGsKfg
July 06, 2021 at 03:51PM by aspiiire2
https://ift.tt/2SOgQaw
Riverpod's StateNotifier Tutorial
https://www.youtube.com/watch?v=87KC5TGsKfg
July 06, 2021 at 03:51PM by aspiiire2
https://ift.tt/2SOgQaw
YouTube
Flutter - Riverpod's StateProvider
The last time we saw how Provider works, but you cannot change the state, with StateProvider you can since it exposes a state property.
📝 Written tutorial? Soon inshAllah
-------------------------------------------------------------------------------…
📝 Written tutorial? Soon inshAllah
-------------------------------------------------------------------------------…
New post on /r/flutterdev subreddit:
Riverpod Tutorial 005 - What's new in version 1.0.0
https://www.youtube.com/watch?v=cmPexCDz9PA
July 06, 2021 at 03:09PM by Elixane
https://ift.tt/3wpnQZ3
Riverpod Tutorial 005 - What's new in version 1.0.0
https://www.youtube.com/watch?v=cmPexCDz9PA
July 06, 2021 at 03:09PM by Elixane
https://ift.tt/3wpnQZ3
YouTube
Riverpod Tutorial 005 - What's new in version 1.0.0
In this video we go through everything that is new in version 1.0.0 of Riverpod. We look at breaking changes, deprecations, and new features.
Chapters:
0:00 Intro
2:30 Breaking changes v0.14.0
5:08 Scoped Provider replaced with Provider
6:47 ConsumerWidget…
Chapters:
0:00 Intro
2:30 Breaking changes v0.14.0
5:08 Scoped Provider replaced with Provider
6:47 ConsumerWidget…
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
July 06, 2021 at 06:05PM by leokcta
https://ift.tt/3hl2mZf
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
reddit
Mix: An expressive way to effortlessly build design systems in...
A subreddit for Google's portable UI framework.
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
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
reddit
Developing on a Macbook Air 13
A subreddit for Google's portable UI framework.
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
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
reddit
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...
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
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
reddit
How to Duplicate a Flutter + Firebase Project — Sudden Defrag
A subreddit for Google's portable UI framework.
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
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
reddit
Getting an Android Phone for Flutter Dev
A subreddit for Google's portable UI framework.
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
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
reddit
Command Line Debugging Flutter
A subreddit for Google's portable UI framework.
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
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
Google Play
Happyer - Free Diary, Journal, Mood Tracker - Apps on Google Play
Keep a diary that also tracks your activities & friends to boost your happiness
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
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
Google
Google Groups
Google Groups allows you to create and participate in online forums and email-based groups with a rich experience for community conversations.
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
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
reddit
Best approach for testing flutter app
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
file_manager | Flutter Package
https://ift.tt/3dMt6j6
July 07, 2021 at 10:52AM by DredditorS
https://ift.tt/3jUcIAW
file_manager | Flutter Package
https://ift.tt/3dMt6j6
July 07, 2021 at 10:52AM by DredditorS
https://ift.tt/3jUcIAW
Dart packages
file_manager | Flutter Package
FileManager is a wonderful widget that allows you to manage files and folders, pick files and folders, and do a lot more. Designed to feel like part of the Flutter framework.
New post on /r/flutterdev subreddit:
like share comment subscribe
https://www.youtube.com/watch?v=gHXDeheG2S4
July 07, 2021 at 12:05PM by nashFlutter
https://ift.tt/3dOUEUU
like share comment subscribe
https://www.youtube.com/watch?v=gHXDeheG2S4
July 07, 2021 at 12:05PM by nashFlutter
https://ift.tt/3dOUEUU
YouTube
Flutter State management using bloc(counter app)
This is a series state management videos using bloc
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
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
Medium
Speed up writing Flutter Redux code in your IDE
Today I’m gonna show you a way for speeding up writing Flutter Redux code in IntelliJ IDEA or Visual Studio Code.
New post on /r/flutterdev subreddit:
Flutter API Calling | Football Competitions Tables App
https://youtu.be/gMONiiFosic
July 07, 2021 at 03:57PM by mheshm
https://ift.tt/36fyabI
Flutter API Calling | Football Competitions Tables App
https://youtu.be/gMONiiFosic
July 07, 2021 at 03:57PM by mheshm
https://ift.tt/36fyabI
YouTube
Flutter API Calling | Football Competitions Tables App
#flutter #API #ui #design #football
Source code: https://github.com/MahmoudHesham099/Flutter-Football-Competitions-Tables-App-API-Calling
Get your free API key: https://www.football-data.org/
http package: https://pub.dev/packages/http
svg package: http…
Source code: https://github.com/MahmoudHesham099/Flutter-Football-Competitions-Tables-App-API-Calling
Get your free API key: https://www.football-data.org/
http package: https://pub.dev/packages/http
svg package: http…
New post on /r/flutterdev subreddit:
Social Media App With Flutter, NodeJS, Postgres and Heroku
https://youtu.be/GsHPaJ7ijXQ
July 07, 2021 at 03:39PM by realappdev
https://ift.tt/36m55v4
Social Media App With Flutter, NodeJS, Postgres and Heroku
https://youtu.be/GsHPaJ7ijXQ
July 07, 2021 at 03:39PM by realappdev
https://ift.tt/36m55v4
YouTube
0.Server Setup | Flutter Social Media App With Custom Backend | Flutter Social Media App
📢the Social is a Flutter Social Media App With Custom Backend. Enjoy!😉Flutter Social Media App With Backend Flutter Social Media App With Backend Flutter ?...
New post on /r/flutterdev subreddit:
Flutter Web Navigation Bar Tutorial Using Inkwell | flutter Responsive U...
https://youtube.com/watch?v=lMjF8jZSzSE&feature=share
July 07, 2021 at 07:10PM by DBestech
https://ift.tt/3wq7Cim
Flutter Web Navigation Bar Tutorial Using Inkwell | flutter Responsive U...
https://youtube.com/watch?v=lMjF8jZSzSE&feature=share
July 07, 2021 at 07:10PM by DBestech
https://ift.tt/3wq7Cim
YouTube
Flutter Web Navigation Bar Tutorial Using Inkwell | flutter Responsive UI | flutter web development
In this tutorial we focus on learning Flutter web navigation bar which is very important for flutter web app and responsive ui design. We have used appBar and PreferedSize widgets and Inkwell to code the ui in flutter. This is all part of flutter responsive…
New post on /r/flutterdev subreddit:
Flutter | Teachable Machine | Pose Classifier | Yoga Pose Classifier | Yoga Classifier | ML
https://youtu.be/cRt43pTVZ84
July 07, 2021 at 08:32PM by Some_Cartographer_23
https://ift.tt/3dPc0Rx
Flutter | Teachable Machine | Pose Classifier | Yoga Pose Classifier | Yoga Classifier | ML
https://youtu.be/cRt43pTVZ84
July 07, 2021 at 08:32PM by Some_Cartographer_23
https://ift.tt/3dPc0Rx
YouTube
Flutter | Teachable Machine | Pose Estimation | Yoga Pose Classifier | Yoga Classifier | ML | TF JS
#Flutter #YogaClassifier #PoseClassifier #MachineLearning #TFLite #PoseEstimation #Tutorial #SirajRaval #AbhishekBapuOve
Click Here for more flutter: http://tiny.cc/th7auz
Tutorial to make yoga pose classifier in the flutter.
Package/Plugin: https://sho…
Click Here for more flutter: http://tiny.cc/th7auz
Tutorial to make yoga pose classifier in the flutter.
Package/Plugin: https://sho…