New post on /r/flutterdev subreddit:
Animate CreditCard - Sequence Animation - Flutter (Tutorial)
https://www.youtube.com/watch?v=cknUItHktzs
October 03, 2020 at 08:47PM by JohannesMilke
https://ift.tt/2Gmw5kS
Animate CreditCard - Sequence Animation - Flutter (Tutorial)
https://www.youtube.com/watch?v=cknUItHktzs
October 03, 2020 at 08:47PM by JohannesMilke
https://ift.tt/2Gmw5kS
YouTube
Flutter Tutorial - Animate CreditCard - Sequence Animation
Build really powerful animations in Flutter easily with the Sequence Animation package.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/card_sequence_animation_exampleโฆ
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/card_sequence_animation_exampleโฆ
New post on /r/flutterdev subreddit:
Language Management (8) - Movie App | Industry Standard | Dev to Publish
https://youtu.be/W-2p3zB1z8k
October 03, 2020 at 08:38PM by prateeksharma1712
https://ift.tt/3jxOyt2
Language Management (8) - Movie App | Industry Standard | Dev to Publish
https://youtu.be/W-2p3zB1z8k
October 03, 2020 at 08:38PM by prateeksharma1712
https://ift.tt/3jxOyt2
YouTube
Language Management (8) - Movie App | Industry Standard | Dev to Publish
#MovieApp #ProApp #IndustryStandard #Plan #Develop #Publish #EndtoEnd #LanguageMangement
Join this channel to support the channel and get access to perks:
https://www.youtube.com/channel/UC3wqIkiaOUpO6EjJoCwH6_Q/join
I am bringing a series of videos forโฆ
Join this channel to support the channel and get access to perks:
https://www.youtube.com/channel/UC3wqIkiaOUpO6EjJoCwH6_Q/join
I am bringing a series of videos forโฆ
New post on /r/flutterdev subreddit:
Riverpod Tutorial 01 - Understanding the different notifiers
https://www.youtube.com/watch?v=ttUNVsIl1tM
October 03, 2020 at 08:34PM by Elixane
https://ift.tt/33tbZ10
Riverpod Tutorial 01 - Understanding the different notifiers
https://www.youtube.com/watch?v=ttUNVsIl1tM
October 03, 2020 at 08:34PM by Elixane
https://ift.tt/33tbZ10
YouTube
Riverpod Tutorial 01 - Understanding the different notifiers
Getting to grips with everything Riverpod has to offer is not easy. This series is here to help. In this video we explore StateNotifier, ValueNotifier and StateProvider. Three different ways to manage state in your Flutter application using Riverpod. Thereโฆ
New post on /r/flutterdev subreddit:
Why is there a link to BlackLives Matter on the Flutter wiki?
Just noticed that at the bottom of the Flutter Wiki are some links to some other Flutter pages, style guides and... blacklivesmatter.com - WTF?What does that organisation have to do with the Flutter wiki?
October 03, 2020 at 09:33PM by TheOtherNextGuy
https://ift.tt/36pxBNM
Why is there a link to BlackLives Matter on the Flutter wiki?
Just noticed that at the bottom of the Flutter Wiki are some links to some other Flutter pages, style guides and... blacklivesmatter.com - WTF?What does that organisation have to do with the Flutter wiki?
October 03, 2020 at 09:33PM by TheOtherNextGuy
https://ift.tt/36pxBNM
GitHub
Home
Flutter makes it easy and fast to build beautiful apps for mobile and beyond - flutter/flutter
New post on /r/flutterdev subreddit:
Please help us decide what Flutter dev tools to build. What is the Flutter ecosystem missing?
https://ift.tt/2SpjvDS
October 03, 2020 at 10:14PM by Codelessly
https://ift.tt/33sekcv
Please help us decide what Flutter dev tools to build. What is the Flutter ecosystem missing?
https://ift.tt/2SpjvDS
October 03, 2020 at 10:14PM by Codelessly
https://ift.tt/33sekcv
Google Docs
What would help you build Flutter apps?
Please help us decide what to build next at Codelessly.
New post on /r/flutterdev subreddit:
Project structure choices: Freezed, Dartx, etc. - Reso Coders difficult code
Tl;Dr; Reso Coders extensive use of freezed (and especially freezed meta tags) and other plugins make it hard to read and understand the code. What is your opinion about this and freezed in general?I went through ResoCoders TDD and DDD courses and must say I liked TDD but DDD seems much more practical and less over-engineered. TDD has so many classes like use-cases and stuff which just seem to pass data through it (i never got too deep into TDD since I wanna use DDD so correct me if I'm wrong or missing something). But what I really don't like is his extensive plugin usage. He uses plugins for every little stuff where he would be better off by just using a pure dart "workaround" like kt_dart with KtList is actually just a UnmodifiableListView in Dart (okok KtList is compile safe but if you use TDD your tests should catch stuff like that). Anyways. The pain begins here: Freezed makes code so messy and introduces such a unreadable syntax (in my opinion). Don't get me wrong easy to use immutable classes are really nice with builtin copyWith even better BUT all these meta tags are really making it hard to read the code and even harder understanding it: For example there are classes that are abstract include an autogenerated class by using with, that have a factory constructor which references to different anonymous subclasses (what the f??? How should any new guy at a firm read this kind of code?). And that are the easier classes wait till you use json_serializable with freezed that is where the fun begins. Freezed even includes custom json fields into your generated json. Code should be easily readable and understandable otherwise nobody can maintain it properly (still maybe this is only my opinion) but all these autogenerated code snippets and meta tags all over the place makes it almost impossible to easily read/understand the code. What do you guys think about this extensive use of such things in his tutorials and what is your opinion about freezed in general?I can understand that robust code is often more complex but it still should be easy to read and to understand otherwise this will introduce errors in the future and make the code just as well unstable. Hardly readable code is never a good sign I think.
October 04, 2020 at 02:23AM by Hard_Veur
https://ift.tt/3jusrDJ
Project structure choices: Freezed, Dartx, etc. - Reso Coders difficult code
Tl;Dr; Reso Coders extensive use of freezed (and especially freezed meta tags) and other plugins make it hard to read and understand the code. What is your opinion about this and freezed in general?I went through ResoCoders TDD and DDD courses and must say I liked TDD but DDD seems much more practical and less over-engineered. TDD has so many classes like use-cases and stuff which just seem to pass data through it (i never got too deep into TDD since I wanna use DDD so correct me if I'm wrong or missing something). But what I really don't like is his extensive plugin usage. He uses plugins for every little stuff where he would be better off by just using a pure dart "workaround" like kt_dart with KtList is actually just a UnmodifiableListView in Dart (okok KtList is compile safe but if you use TDD your tests should catch stuff like that). Anyways. The pain begins here: Freezed makes code so messy and introduces such a unreadable syntax (in my opinion). Don't get me wrong easy to use immutable classes are really nice with builtin copyWith even better BUT all these meta tags are really making it hard to read the code and even harder understanding it: For example there are classes that are abstract include an autogenerated class by using with, that have a factory constructor which references to different anonymous subclasses (what the f??? How should any new guy at a firm read this kind of code?). And that are the easier classes wait till you use json_serializable with freezed that is where the fun begins. Freezed even includes custom json fields into your generated json. Code should be easily readable and understandable otherwise nobody can maintain it properly (still maybe this is only my opinion) but all these autogenerated code snippets and meta tags all over the place makes it almost impossible to easily read/understand the code. What do you guys think about this extensive use of such things in his tutorials and what is your opinion about freezed in general?I can understand that robust code is often more complex but it still should be easy to read and to understand otherwise this will introduce errors in the future and make the code just as well unstable. Hardly readable code is never a good sign I think.
October 04, 2020 at 02:23AM by Hard_Veur
https://ift.tt/3jusrDJ
reddit
Project structure choices: Freezed, Dartx, etc. - Reso Coders...
Tl;Dr; Reso Coders extensive use of freezed (and especially freezed meta tags) and other plugins make it hard to read and understand the code....
New post on /r/flutterdev subreddit:
Make your own ranking algorithm to curate your social media (Made with Flutter)
https://ift.tt/2EXh5sT
October 04, 2020 at 06:43AM by elijahleinkram
https://ift.tt/3cXYDwW
Make your own ranking algorithm to curate your social media (Made with Flutter)
https://ift.tt/2EXh5sT
October 04, 2020 at 06:43AM by elijahleinkram
https://ift.tt/3cXYDwW
GitHub
elijahleinkram/feedstack
Get started with Feedstack. Contribute to elijahleinkram/feedstack development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
I made my first app with flutter
Here's the link https://play.google.com/store/apps/details?id=com.class12revisionIts a notes app for 10+2 With all subjects Need Feedback
October 04, 2020 at 09:06AM by jatinhemnani
https://ift.tt/30z1Td7
I made my first app with flutter
Here's the link https://play.google.com/store/apps/details?id=com.class12revisionIts a notes app for 10+2 With all subjects Need Feedback
October 04, 2020 at 09:06AM by jatinhemnani
https://ift.tt/30z1Td7
New post on Flutter Dev Google group:
Flutter devtools error 255 on Mac. Anyone else getting it?
Anyone run into this error on mac? I keep getting it in vscode. No idea why. flutter doctor says everything is fine. "Dart DevTools exited with code 255. Would you like to try reactivating DevTools?" Here's version info for Flutter and Dart. Any help would be greatly appreciated! I've tried
October 04, 2020 at 10:46AM by Nolan Mayersky
https://ift.tt/2GhDvpE
Flutter devtools error 255 on Mac. Anyone else getting it?
Anyone run into this error on mac? I keep getting it in vscode. No idea why. flutter doctor says everything is fine. "Dart DevTools exited with code 255. Would you like to try reactivating DevTools?" Here's version info for Flutter and Dart. Any help would be greatly appreciated! I've tried
October 04, 2020 at 10:46AM by Nolan Mayersky
https://ift.tt/2GhDvpE
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:
๐ฅ ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ - ๐๐ซ๐จ๐๐๐ซ๐ฒ ๐๐ฉ๐ฉ - ๐๐จ๐จ๐๐จ๐ฆ๐ฆ๐๐ซ๐๐ ๐๐๐ซ๐ข๐๐ฌ ๐ฅ - ๐๐ ๐๐ - ๐๐จ๐ฆ๐ ๐๐๐ซ๐๐๐ง https://youtu.be/sL7QD-vT7xw Go and subscribe to the Channel ๐๐๐ And Stay tuned .. ๐๐ https://www.youtube.com/SnippetCoder #flutter #ios #android #provider #ecommerce #grocer
https://youtu.be/sL7QD-vT7xw
October 04, 2020 at 10:37AM by TheTechDesigner
https://ift.tt/33uFBet
๐ฅ ๐ ๐ฅ๐ฎ๐ญ๐ญ๐๐ซ - ๐๐ซ๐จ๐๐๐ซ๐ฒ ๐๐ฉ๐ฉ - ๐๐จ๐จ๐๐จ๐ฆ๐ฆ๐๐ซ๐๐ ๐๐๐ซ๐ข๐๐ฌ ๐ฅ - ๐๐ ๐๐ - ๐๐จ๐ฆ๐ ๐๐๐ซ๐๐๐ง https://youtu.be/sL7QD-vT7xw Go and subscribe to the Channel ๐๐๐ And Stay tuned .. ๐๐ https://www.youtube.com/SnippetCoder #flutter #ios #android #provider #ecommerce #grocer
https://youtu.be/sL7QD-vT7xw
October 04, 2020 at 10:37AM by TheTechDesigner
https://ift.tt/33uFBet
YouTube
๐ฅ Flutter - Grocery App - WordPress - WooCommerce Series ๐ฅ - EP 05 - Home Screen
This is the fifth episode of the Flutter - WooCommerce Series. In this Video learn how to Create Store Home Screen with Categories and Top products using WooCommerce API.
Click ๐ to get notified about our latest videos
Subscribe & Help us to Grow :)โฆ
Click ๐ to get notified about our latest videos
Subscribe & Help us to Grow :)โฆ
New post on /r/flutterdev subreddit:
Flutter Animation Demo
https://ift.tt/2GAzOLv
October 04, 2020 at 11:18AM by tledrag
https://ift.tt/3nk9QwK
Flutter Animation Demo
https://ift.tt/2GAzOLv
October 04, 2020 at 11:18AM by tledrag
https://ift.tt/3nk9QwK
GitHub
androideen/awesome_flutter_animation
Showcase of animations in a Flutter app. Contribute to androideen/awesome_flutter_animation development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
FlutterForce โ Week 90
https://ift.tt/34qvd6y
October 04, 2020 at 11:18AM by flutterist
https://ift.tt/3jtYvYl
FlutterForce โ Week 90
https://ift.tt/34qvd6y
October 04, 2020 at 11:18AM by flutterist
https://ift.tt/3jtYvYl
Medium
FlutterForceโโโ#Week 90
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Happy to support FlutterForce โ #Week 90 - check latest Flutter tips
https://ift.tt/34qvd6y
October 04, 2020 at 12:15PM by vaclavhodek
https://ift.tt/3l8CTBp
Happy to support FlutterForce โ #Week 90 - check latest Flutter tips
https://ift.tt/34qvd6y
October 04, 2020 at 12:15PM by vaclavhodek
https://ift.tt/3l8CTBp
Medium
FlutterForceโโโ#Week 90
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
My first app (wallpaper community app)
hello guys I would like you to check my first flutter app its in development ,i created a wallpaper app where you can upload your own, save in a DB using bloc..i used a few apis and firebaseโhttps://github.com/guglia001/wallpaper-hype-flutterhttps://play.google.com/store/apps/details?id=com.guglia001.wallpaper_dopeโhttps://res.cloudinary.com/dr7sntabv/image/upload/v1601806335/Screenshot_2_io6hp4.png
October 04, 2020 at 12:38PM by guglia001
https://ift.tt/2HYKIvj
My first app (wallpaper community app)
hello guys I would like you to check my first flutter app its in development ,i created a wallpaper app where you can upload your own, save in a DB using bloc..i used a few apis and firebaseโhttps://github.com/guglia001/wallpaper-hype-flutterhttps://play.google.com/store/apps/details?id=com.guglia001.wallpaper_dopeโhttps://res.cloudinary.com/dr7sntabv/image/upload/v1601806335/Screenshot_2_io6hp4.png
October 04, 2020 at 12:38PM by guglia001
https://ift.tt/2HYKIvj
GitHub
GitHub - guglia001/flutter-wallpaper-app: wallpaper flutter app
wallpaper flutter app. Contribute to guglia001/flutter-wallpaper-app development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Flutter Code Generation - What You Need To Know
https://youtu.be/pI6cXMmXBkA
October 04, 2020 at 03:29PM by RobertBrunhage
https://ift.tt/2GuY15L
Flutter Code Generation - What You Need To Know
https://youtu.be/pI6cXMmXBkA
October 04, 2020 at 03:29PM by RobertBrunhage
https://ift.tt/2GuY15L
YouTube
Flutter Code Generation - What You Need To Know
Code generation can be pretty powerful but you need to know when to use it and when not to use it! We will cover everything from using code generation to when you maybe should not use it.
Sign up here for more videos: https://robertbrunhage.com/
TIMESTAMPSโฆ
Sign up here for more videos: https://robertbrunhage.com/
TIMESTAMPSโฆ
New post on /r/flutterdev subreddit:
Transform - Flip & Rotate Widgets - Flutter (Tutorial)
https://www.youtube.com/watch?v=FHgqEay3VUI
October 04, 2020 at 05:35PM by JohannesMilke
https://ift.tt/3cW3sH0
Transform - Flip & Rotate Widgets - Flutter (Tutorial)
https://www.youtube.com/watch?v=FHgqEay3VUI
October 04, 2020 at 05:35PM by JohannesMilke
https://ift.tt/3cW3sH0
YouTube
Flutter Tutorial - Transform - Flip & Rotate Widgets
Transform your widgets with flips & rotations if the user interacts with it.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/card_transform_example
- Buyโฆ
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/card_transform_example
- Buyโฆ
New post on /r/flutterdev subreddit:
Custom Loading Shimmer in Flutter
Hi all,I wrote a Medium article on how to implement Custom Loading Shimmer in Flutter. It's my first Medium article, please have a look. Any suggestions are much appreciated!Click here to access the article.Thanks :)
October 04, 2020 at 06:15PM by iamharsh_07
https://ift.tt/2HVmTo2
Custom Loading Shimmer in Flutter
Hi all,I wrote a Medium article on how to implement Custom Loading Shimmer in Flutter. It's my first Medium article, please have a look. Any suggestions are much appreciated!Click here to access the article.Thanks :)
October 04, 2020 at 06:15PM by iamharsh_07
https://ift.tt/2HVmTo2
Medium
Custom Loading Shimmer in FlutterโโโThe Easy Way
NOTE: This is my first Medium article, any suggestions would be appreciated! :)
New post on /r/flutterdev subreddit:
Animated Category View witch may be useful for you
When I asked myself how to make an animated GridViev, when you click on an element and it would open up animation, after a time of searching and various trials, I came to the conclusion that there is no simple element that would help to do this and it would look cool. So I decided to try to solve this problem with:
October 04, 2020 at 06:08PM by neriom
https://ift.tt/2GfyfCX
Animated Category View witch may be useful for you
When I asked myself how to make an animated GridViev, when you click on an element and it would open up animation, after a time of searching and various trials, I came to the conclusion that there is no simple element that would help to do this and it would look cool. So I decided to try to solve this problem with:
animated_categoryAnimated category picker library image:https://github.com/followthemoney1/animated_category/blob/master/gif.gifโMay it's helpful for you?
October 04, 2020 at 06:08PM by neriom
https://ift.tt/2GfyfCX
New post on /r/flutterdev subreddit:
Flutter Crash Course -V1.22 Stable Release
https://youtu.be/0E7L0x1S1ro
October 04, 2020 at 06:44PM by daverex443
https://ift.tt/3ngdyXU
Flutter Crash Course -V1.22 Stable Release
https://youtu.be/0E7L0x1S1ro
October 04, 2020 at 06:44PM by daverex443
https://ift.tt/3ngdyXU
YouTube
Flutter Crash Course For Beginners | Go Zero To Hero
Flutter Crash Course For Absolute Beginners Over The New Release Of Flutter's 1.22 Stable Version Through Flutter Basics.๐ฆFlutter Crash Course For Beginners...
New post on /r/flutterdev subreddit:
Flutter Push Notifications using flutter firebase messaging with example
https://ift.tt/3ioVo2I
October 04, 2020 at 08:36PM by rrtutors
https://ift.tt/3iwOUP8
Flutter Push Notifications using flutter firebase messaging with example
https://ift.tt/3ioVo2I
October 04, 2020 at 08:36PM by rrtutors
https://ift.tt/3iwOUP8
Rrtutors
Flutter Firebase Notifications and Open Particular Screen on Clicking on Push Notification
Flutter Firebase Push notification integration and Navigate to specific screen on notification click events
New post on /r/flutterdev subreddit:
wakelock 0.2.0 has web support ๐ฅณ (and uses the federated plugins approach)
https://twitter.com/creativemaybeno/status/1312832748579586048?s=20
October 04, 2020 at 09:12PM by creativemaybeno
https://ift.tt/36DSAMG
wakelock 0.2.0 has web support ๐ฅณ (and uses the federated plugins approach)
https://twitter.com/creativemaybeno/status/1312832748579586048?s=20
October 04, 2020 at 09:12PM by creativemaybeno
https://ift.tt/36DSAMG
Twitter
creativecreatorormaybenot
I completely refreshed my #Flutter *wakelock* plugin ๐ฅณ Now w/ *web support* (thanks to @roulljdh) and w/ the latest and greatest Flutter standards ๐ The repo is probably a good example for best plugin practices now ๐ Check it out if you are curious ๐ httโฆ