New post on /r/flutterdev subreddit:
Using short and sweet tear-off instead of A lambda or function call if the caller and calling functions have the same arguments.
https://twitter.com/erluxman/status/1263300974904410112
May 21, 2020 at 04:51AM by erluxman
https://ift.tt/2LJp903
Using short and sweet tear-off instead of A lambda or function call if the caller and calling functions have the same arguments.
https://twitter.com/erluxman/status/1263300974904410112
May 21, 2020 at 04:51AM by erluxman
https://ift.tt/2LJp903
Twitter
Laxman
Whenever possible, we should use tear-off instead of A lambda and function call if the caller and calling functions have the same arguments. #day45 #100DaysofFlutter #Flutter
New post on /r/flutterdev subreddit:
Implementing Image filters in Flutter
https://twitter.com/erluxman/status/1263755429579898880
May 22, 2020 at 11:04AM by erluxman
https://ift.tt/2ZrIpre
Implementing Image filters in Flutter
https://twitter.com/erluxman/status/1263755429579898880
May 22, 2020 at 11:04AM by erluxman
https://ift.tt/2ZrIpre
Twitter
Laxman
Want to apply filter to image/widget? ColorFiltered( colorFilter : ColorFilter.mode(https://t.co/RNtSf2kBiS,BlendMode.multiply), child: image/widget ) Try different BlendMode and colors. get code here. https://t.co/lB2D74WnmH #day46 #100DaysofFlutter #Flutterβ¦
New post on /r/flutterdev subreddit:
Quick & Easy: Create a Gradient / Image overlay/Mask (Like burning text effect) to any Flutter Widget with ShaderMask. [See the snippet and output]
https://twitter.com/erluxman/status/1264034430517014528
May 23, 2020 at 05:28AM by erluxman
https://ift.tt/2LSISKV
Quick & Easy: Create a Gradient / Image overlay/Mask (Like burning text effect) to any Flutter Widget with ShaderMask. [See the snippet and output]
https://twitter.com/erluxman/status/1264034430517014528
May 23, 2020 at 05:28AM by erluxman
https://ift.tt/2LSISKV
New post on /r/flutterdev subreddit:
πImports on Steroids π, What is the use of as, show, and hide mean in import statements?
https://twitter.com/erluxman/status/1265470703043633153
May 27, 2020 at 04:33AM by erluxman
https://ift.tt/2yAF8e9
πImports on Steroids π, What is the use of as, show, and hide mean in import statements?
https://twitter.com/erluxman/status/1265470703043633153
May 27, 2020 at 04:33AM by erluxman
https://ift.tt/2yAF8e9
Twitter
Laxman
π Import on Steroids π as : Differentiate two or more libraries that have conflicting identifiers show : Show only certain class and hide everything else from it. hide : Hide only certain class & show everything else from it. #day52 #100DaysofFlutter #Flutter
New post on /r/flutterdev subreddit:
π Difference between final & const in dart π―
https://twitter.com/erluxman/status/1265903219219116032
May 28, 2020 at 09:33AM by erluxman
https://ift.tt/2X6JQK4
π Difference between final & const in dart π―
https://twitter.com/erluxman/status/1265903219219116032
May 28, 2020 at 09:33AM by erluxman
https://ift.tt/2X6JQK4
Twitter
Laxman
π―Dart final vs constπ― final and const in dart are confusing to the level we think both of them are the same. Let's see their differences: #day53 #100DaysofFlutter #Flutter
New post on /r/flutterdev subreddit:
You would be surprised Doing Navigation, Dialog, and Snackbar was ever would be this easy and clear: Use get package.
https://twitter.com/erluxman/status/1266642558899257346/photo/1
May 30, 2020 at 10:10AM by erluxman
https://ift.tt/36KVdKT
You would be surprised Doing Navigation, Dialog, and Snackbar was ever would be this easy and clear: Use get package.
https://twitter.com/erluxman/status/1266642558899257346/photo/1
May 30, 2020 at 10:10AM by erluxman
https://ift.tt/36KVdKT
Twitter
Laxman
Bored of writing `PageRoute`,`context` and `builder` without actual use of them just to navigate to different Widget? Thanks to JonnyBorges we now have get navigation package. Once you use get You never be upset https://t.co/ReQOgHAbId #day55 #100DaysofFlutterβ¦
New post on /r/flutterdev subreddit:
Are you still confused about Flutter path while installing Flutter in the first try on mac/Linux? This will solve your issue.
https://twitter.com/erluxman/status/1267702470181916672
June 02, 2020 at 08:38AM by erluxman
https://ift.tt/2yZAnLq
Are you still confused about Flutter path while installing Flutter in the first try on mac/Linux? This will solve your issue.
https://twitter.com/erluxman/status/1267702470181916672
June 02, 2020 at 08:38AM by erluxman
https://ift.tt/2yZAnLq
Twitter
Laxman
If you still can't fully install Flutter in the first try like me, this might be helpful: Find command here https://t.co/dKnhGPeBJ1 #day58 #100DaysofFlutter #Flutter
New post on /r/flutterdev subreddit:
Displaying SVG file is just like displaying png or jpg with flutter_svg
https://twitter.com/erluxman/status/1268408443896868866/photo/1
June 04, 2020 at 07:36AM by erluxman
https://ift.tt/3dBVAdi
Displaying SVG file is just like displaying png or jpg with flutter_svg
https://twitter.com/erluxman/status/1268408443896868866/photo/1
June 04, 2020 at 07:36AM by erluxman
https://ift.tt/3dBVAdi
Twitter
Laxman
Even though flutter doesn't support any vector graphics out of the box, the package flutter_svg can render svg into the Flutter app You can use it like the Image .asset() .network() .file() get flutter_svg https://t.co/C8gCnenLed #day60 #100DaysofFlutterβ¦
New post on /r/flutterdev subreddit:
Easily add "Build Passing" badge on your Flutter/Dart Project
https://twitter.com/erluxman/status/1271304113452486657
June 12, 2020 at 07:06AM by erluxman
https://ift.tt/37nGUw0
Easily add "Build Passing" badge on your Flutter/Dart Project
https://twitter.com/erluxman/status/1271304113452486657
June 12, 2020 at 07:06AM by erluxman
https://ift.tt/37nGUw0
Twitter
Laxman
Want a "Build Passing" badge on your README? π > Create github/workflows/main.yml with build steps on root directory > Add the build badge on your https://t.co/yL6Ota26Th. > Commit. β
Commands and snippets : https://t.co/yHkNkWeIIp #day67 #100DaysofFlutterβ¦
New post on /r/flutterdev subreddit:
84 tips done more coming. #100daysOfFlutter
Just added 7 More tips (78-84) to β€οΈ Awesome Flutter β€οΈ tips and tricks β€οΈIt has become a pretty good set of tips that I come back when I get stuck.I am really glad that I am able to help folks and absolutely love your messages.πThanks so much for your support. ππΌThere are just 84 tips till now but I want to turn it into a repo where one can come and find tips for most of the important aspects of Flutter.For that purpose, your feedback and contributions will help a lot.I am a beginner in Opensource, sometimes I might make silly mistakes but I will cover them up with my good intentions, helpfulness, and consistency.You can make any suggestions/requests for specific or kind of tips on the Github issue [here](https://github.com/erluxman/awesomefluttertips) .I will address them as much as possible.
June 29, 2020 at 09:01PM by erluxman
https://ift.tt/38aSdbr
84 tips done more coming. #100daysOfFlutter
Just added 7 More tips (78-84) to β€οΈ Awesome Flutter β€οΈ tips and tricks β€οΈIt has become a pretty good set of tips that I come back when I get stuck.I am really glad that I am able to help folks and absolutely love your messages.πThanks so much for your support. ππΌThere are just 84 tips till now but I want to turn it into a repo where one can come and find tips for most of the important aspects of Flutter.For that purpose, your feedback and contributions will help a lot.I am a beginner in Opensource, sometimes I might make silly mistakes but I will cover them up with my good intentions, helpfulness, and consistency.You can make any suggestions/requests for specific or kind of tips on the Github issue [here](https://github.com/erluxman/awesomefluttertips) .I will address them as much as possible.
June 29, 2020 at 09:01PM by erluxman
https://ift.tt/38aSdbr
GitHub
GitHub - erluxman/awesomefluttertips: β€οΈ Awesome Flutter Tips and Tricks β€οΈ
β€οΈ Awesome Flutter Tips and Tricks β€οΈ. Contribute to erluxman/awesomefluttertips development by creating an account on GitHub.