New post on /r/flutterdev subreddit:
FlutterForce — Week 111
https://ift.tt/3bod6Dh
March 07, 2021 at 11:11AM by flutterist
https://ift.tt/3t9KLGX
FlutterForce — Week 111
https://ift.tt/3bod6Dh
March 07, 2021 at 11:11AM by flutterist
https://ift.tt/3t9KLGX
Medium
FlutterForce — #Week 111
Weekly Flutter Resources
New post on /r/flutterdev subreddit:
Package providing simple 2D lights and more effects
Hey there, I just published my first package called eeffects. It provides a variety of simple 2D effects which are (so far):Point LightsLight BeamsFireLightning boltshttps://pub.dev/packages/eeffectshttps://github.com/evilevidenz/eeffectsA few examples:https://media.giphy.com/media/8LENHk5DxPE6B6NzqZ/giphy.gifhttps://media.giphy.com/media/4DOmuMuTcDXTQ60EXX/giphy.gifhttps://media.giphy.com/media/cKvl5S5TLeXTrn46Dp/giphy.gifhttps://media.giphy.com/media/PcnlCqYdpWyqiEMRTc/giphy.gif
March 07, 2021 at 12:53PM by evilevidenz
https://ift.tt/30klxJn
Package providing simple 2D lights and more effects
Hey there, I just published my first package called eeffects. It provides a variety of simple 2D effects which are (so far):Point LightsLight BeamsFireLightning boltshttps://pub.dev/packages/eeffectshttps://github.com/evilevidenz/eeffectsA few examples:https://media.giphy.com/media/8LENHk5DxPE6B6NzqZ/giphy.gifhttps://media.giphy.com/media/4DOmuMuTcDXTQ60EXX/giphy.gifhttps://media.giphy.com/media/cKvl5S5TLeXTrn46Dp/giphy.gifhttps://media.giphy.com/media/PcnlCqYdpWyqiEMRTc/giphy.gif
March 07, 2021 at 12:53PM by evilevidenz
https://ift.tt/30klxJn
Dart packages
eeffects | Flutter Package
Flutter package containing a variety of simple 2D effects. Point Lights, Light Beams, fire and Lightning Bolts so far.
New post on /r/flutterdev subreddit:
Expert in android native before go to flutter?
Hi, i have a small knowledge of android native but i start to watch some tutorials of flutter, my question is: it's recomended to first learn android native before dive in flutter? (sorry my bad english)
March 07, 2021 at 12:36PM by Drunk-Yoda
https://ift.tt/38jbhW5
Expert in android native before go to flutter?
Hi, i have a small knowledge of android native but i start to watch some tutorials of flutter, my question is: it's recomended to first learn android native before dive in flutter? (sorry my bad english)
March 07, 2021 at 12:36PM by Drunk-Yoda
https://ift.tt/38jbhW5
reddit
Expert in android native before go to flutter?
Hi, i have a small knowledge of android native but i start to watch some tutorials of flutter, my question is: it's recomended to first learn...
New post on /r/flutterdev subreddit:
Safe to update to Flutter 2?
I have multiple apps written in flutter 1, is it safe to update to flutter 2 or is it better to wait that the major third part packages are upgraded to flutter 2?
March 07, 2021 at 01:36PM by 404randomnamehere
https://ift.tt/3rr8sd1
Safe to update to Flutter 2?
I have multiple apps written in flutter 1, is it safe to update to flutter 2 or is it better to wait that the major third part packages are upgraded to flutter 2?
March 07, 2021 at 01:36PM by 404randomnamehere
https://ift.tt/3rr8sd1
reddit
Safe to update to Flutter 2?
I have multiple apps written in flutter 1, is it safe to update to flutter 2 or is it better to wait that the major third part packages are...
New post on /r/flutterdev subreddit:
Good repos to level up code
I've been working with flutter for almost a year now in a bank app, but I feel like I'm slowing down the pace and it really sucks.Does anyone know a good repository with really good code to learn from?
March 07, 2021 at 04:05PM by Manzke
https://ift.tt/2Ow81Q2
Good repos to level up code
I've been working with flutter for almost a year now in a bank app, but I feel like I'm slowing down the pace and it really sucks.Does anyone know a good repository with really good code to learn from?
March 07, 2021 at 04:05PM by Manzke
https://ift.tt/2Ow81Q2
reddit
Good repos to level up code
I've been working with flutter for almost a year now in a bank app, but I feel like I'm slowing down the pace and it really sucks. Does anyone...
New post on /r/flutterdev subreddit:
The wakelock plugin now has added Windows support 🚀
https://twitter.com/creativemaybeno/status/1368567612574171144?s=20
March 07, 2021 at 03:26PM by creativemaybeno
https://ift.tt/3v3OGqs
The wakelock plugin now has added Windows support 🚀
https://twitter.com/creativemaybeno/status/1368567612574171144?s=20
March 07, 2021 at 03:26PM by creativemaybeno
https://ift.tt/3v3OGqs
Twitter
creativecreatorormaybenot
Excited to announce that the wakelock #Flutter plugin now has added #Windows support 🥳🎊 This was only possible thanks to the contribution by Jon Salmon and the win32 package by @timsneath 🚀🤘 Crazy to see Flutter now supports all of these platforms 🤯 http…
New post on /r/flutterdev subreddit:
Null-Safety and compiler's null detection within if block
Hello devs,Null-Safety - long awaited feature! Super happy to finally get to experience it hands-on. However as with most of the new stuff, there might be some unexpected results. I've stumbled upon this interesting behaviour couple days back and more I look, more people seem to get to notice it.Seems that if variable is declared within the class's scope - `if` checks won't be taken into consideration by the compiler and we still need to use `!`. Even though we made sure `!= null` was used. I guess with `assert` it would work the same way - it would be ignored.Sample and more comments are available here.I've raised this in Flutter's Discord, but I didn't seem to get any attention.Was wondering if anyone from the Dart Team could explain this behaviour? And should we expect some improvements? Or it is how it will always work?Some more samples
https://twitter.com/biz84/status/1367797398941097984https://twitter.com/mkobuolys/status/1368293897923923969Cheers
March 07, 2021 at 03:19PM by Deimantasa
https://ift.tt/3rqr50V
Null-Safety and compiler's null detection within if block
Hello devs,Null-Safety - long awaited feature! Super happy to finally get to experience it hands-on. However as with most of the new stuff, there might be some unexpected results. I've stumbled upon this interesting behaviour couple days back and more I look, more people seem to get to notice it.Seems that if variable is declared within the class's scope - `if` checks won't be taken into consideration by the compiler and we still need to use `!`. Even though we made sure `!= null` was used. I guess with `assert` it would work the same way - it would be ignored.Sample and more comments are available here.I've raised this in Flutter's Discord, but I didn't seem to get any attention.Was wondering if anyone from the Dart Team could explain this behaviour? And should we expect some improvements? Or it is how it will always work?Some more samples
https://twitter.com/biz84/status/1367797398941097984https://twitter.com/mkobuolys/status/1368293897923923969Cheers
March 07, 2021 at 03:19PM by Deimantasa
https://ift.tt/3rqr50V
Twitter
Aurimas Deimantas
@biz84 I've raised exact issue couple days ago in Discord just to get my post pretty must ignored :) Compiler doesn't pick up `!=` if it's a field within a class and out of scope of function. If you guys could spread the word, that'd be great. As now null…
New post on /r/flutterdev subreddit:
Ubuntu Makes Flutter 'Default Choice' for Future Desktop Apps
https://ift.tt/2OofXD1
March 07, 2021 at 04:25PM by tilley77
https://ift.tt/3qkQNSZ
Ubuntu Makes Flutter 'Default Choice' for Future Desktop Apps
https://ift.tt/2OofXD1
March 07, 2021 at 04:25PM by tilley77
https://ift.tt/3qkQNSZ
OMG! Ubuntu!
Ubuntu Makes Flutter ‘Default Choice’ for Future Desktop Apps
Future Ubuntu apps made by Canonical will use Flutter, Google's open-source UI framework. We ask whether this news will help or harm the Ubuntu experience.
New post on Flutter Dev Google group:
Flutter 2.0: Still no "layout system", "app structure", native widgets for web & desktop?
Hi! I build native mobile apps with Flutter. But in mid-March, I give two conference talks about how Java developers should build front-ends (here < https://betterprojectsfaster.com/learn/talks-javaland-2021-long-java-front-ends/> and here < https://betterprojectsfaster.com/learn/talks-it-tag
March 07, 2021 at 05:46PM by Karsten Silz
https://ift.tt/3bkQZ0l
Flutter 2.0: Still no "layout system", "app structure", native widgets for web & desktop?
Hi! I build native mobile apps with Flutter. But in mid-March, I give two conference talks about how Java developers should build front-ends (here < https://betterprojectsfaster.com/learn/talks-javaland-2021-long-java-front-ends/> and here < https://betterprojectsfaster.com/learn/talks-it-tag
March 07, 2021 at 05:46PM by Karsten Silz
https://ift.tt/3bkQZ0l
New tweet from FlutterDev:
Become the mythical designer-developer 🦄
Software engineers with a knack for design are in short supply. In this talk, @filiphracek explores the basics of good app design and how they translate to Flutter widgets.
Watch on demand 📺 → https://t.co/27cUDFzgD9 #FlutterEngage pic.twitter.com/dpVts1b96P— Flutter (@FlutterDev) March 7, 2021
March 07, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1368607425377533954
Become the mythical designer-developer 🦄
Software engineers with a knack for design are in short supply. In this talk, @filiphracek explores the basics of good app design and how they translate to Flutter widgets.
Watch on demand 📺 → https://t.co/27cUDFzgD9 #FlutterEngage pic.twitter.com/dpVts1b96P— Flutter (@FlutterDev) March 7, 2021
March 07, 2021 at 06:00PM
http://twitter.com/FlutterDev/status/1368607425377533954
Twitter
Filip Hráček (@filiphracek) | Twitter
The latest Tweets from Filip Hráček (@filiphracek). I explain difficult things to smart people. Separately, I also make games (@RaindeadGames) and useful little software projects (https://t.co/LnvSFrXDLK). San Fransisco Bay Area
New post on /r/flutterdev subreddit:
Using Supabase with Flutter - Firebase Open Source alternative
Supabase is a relational database. Open-source alternative to Firebase.This video covers basics of:Adding dart dependencyCreating tableAuthenticating userReading and Inserting dataLink to the video: https://youtu.be/fqfHEZvQPlY
March 07, 2021 at 07:01PM by adityathakurxd
https://ift.tt/3c7PQII
Using Supabase with Flutter - Firebase Open Source alternative
Supabase is a relational database. Open-source alternative to Firebase.This video covers basics of:Adding dart dependencyCreating tableAuthenticating userReading and Inserting dataLink to the video: https://youtu.be/fqfHEZvQPlY
March 07, 2021 at 07:01PM by adityathakurxd
https://ift.tt/3c7PQII
YouTube
Supabase with Flutter - Firebase Alternative
Supabase is the Open Source Firebase Alternative. Supabase is a relational database whereas Firebase is a NoSQL database.
GitHub repository: https://github.com/adityathakurxd/supabase_flutter
Supabase links:
Website: https://supabase.io/
GitHub: https:…
GitHub repository: https://github.com/adityathakurxd/supabase_flutter
Supabase links:
Website: https://supabase.io/
GitHub: https:…
New post on /r/flutterdev subreddit:
Platform-specific Dart code
I want to create a Dart application. If it is deployed as a web application, I want to use the HTML library. If it is deployed as an Android or iOS app, I want to use the IO library instead. Basically I want to create platform specific Dart code instead of platform specific JavaScript/Java/Swift code. Is that possible?
March 07, 2021 at 06:35PM by patri9ck
https://ift.tt/3rwqmeM
Platform-specific Dart code
I want to create a Dart application. If it is deployed as a web application, I want to use the HTML library. If it is deployed as an Android or iOS app, I want to use the IO library instead. Basically I want to create platform specific Dart code instead of platform specific JavaScript/Java/Swift code. Is that possible?
March 07, 2021 at 06:35PM by patri9ck
https://ift.tt/3rwqmeM
reddit
Platform-specific Dart code
I want to create a Dart application. If it is deployed as a web application, I want to use the HTML library. If it is deployed as an Android or...
New post on /r/flutterdev subreddit:
If possible, what is the best way of integrating Flutter/Dart and Rust for web apps?
Hello,From Flutter's documentation about integration with C, it looks like Dart-FFI is not available for web apps.Is it possible to use the same Flutter+Rust codebase for web, mobile and desktop?If so, I'll be glad if someone can point to some tutorial or guide with the current best practice on doing it.I'm intending to use Flutter/Dart for UI and Rust for logic.Best regards ant thank you in advance
March 07, 2021 at 08:02PM by GoodSamaritan333
https://ift.tt/3roWrow
If possible, what is the best way of integrating Flutter/Dart and Rust for web apps?
Hello,From Flutter's documentation about integration with C, it looks like Dart-FFI is not available for web apps.Is it possible to use the same Flutter+Rust codebase for web, mobile and desktop?If so, I'll be glad if someone can point to some tutorial or guide with the current best practice on doing it.I'm intending to use Flutter/Dart for UI and Rust for logic.Best regards ant thank you in advance
March 07, 2021 at 08:02PM by GoodSamaritan333
https://ift.tt/3roWrow
reddit
If possible, what is the best way of integrating Flutter/Dart and...
A subreddit for Google's portable UI framework.
New tweet from FlutterDev:
🌍✨ New and easy internationalization in Flutter!
Catch @OrestesGaolin in this #FlutterEngage community talk to see how you can use the new simplified approach to i18n and conveniently manage the ARB files.
Watch on demand 📺 → https://t.co/fjN4HnqOI5 pic.twitter.com/4lUUqb2VLc— Flutter (@FlutterDev) March 7, 2021
March 07, 2021 at 08:00PM
http://twitter.com/FlutterDev/status/1368637590132453380
🌍✨ New and easy internationalization in Flutter!
Catch @OrestesGaolin in this #FlutterEngage community talk to see how you can use the new simplified approach to i18n and conveniently manage the ARB files.
Watch on demand 📺 → https://t.co/fjN4HnqOI5 pic.twitter.com/4lUUqb2VLc— Flutter (@FlutterDev) March 7, 2021
March 07, 2021 at 08:00PM
http://twitter.com/FlutterDev/status/1368637590132453380
Twitter
Dominik Roszkowski ⚡️ (@OrestesGaolin) | Twitter
The latest Tweets from Dominik Roszkowski ⚡️ (@OrestesGaolin). Flutter GDE 💙 Engineer at @VGVentures 🦄 @PWSat2 satellite project deputy manager 🖖 @FlutterEurope co-founder 🕺
making Flutter apps with 🍪 ☕️ 🍜. Warsaw, Poland
making Flutter apps with 🍪 ☕️ 🍜. Warsaw, Poland
New post on /r/flutterdev subreddit:
Can someone help me with a detailed tutorial on how to *setup* flutter on vscode, the tutorial on flutter's official site doesn't cover everything
I need assistance with setting up flutter for vscode
March 07, 2021 at 09:51PM by Random_Int_Guy
https://ift.tt/3kR0ZSi
Can someone help me with a detailed tutorial on how to *setup* flutter on vscode, the tutorial on flutter's official site doesn't cover everything
I need assistance with setting up flutter for vscode
March 07, 2021 at 09:51PM by Random_Int_Guy
https://ift.tt/3kR0ZSi
reddit
Can someone help me with a detailed tutorial on how to *setup*...
I need assistance with setting up flutter for vscode
New post on /r/flutterdev subreddit:
This Tuesday: Flutter web meet-up. Quiz Mariam and Tim from Google!
Hello lovely Redditors!This Tuesday, we’re doing an online meet-up about Flutter web. We’ll be joined by Tim Sneath and Mariam Hasnany from the Flutter team. Got a question about Flutter web? Comment on this post, and we’ll ask them as many as possible.On Flutter’s blog posts about Flutter 2 this week you may have noticed screenshots of “Mun Moi”.I’m the lead developer of it, and I’ll be talking about bringing the app from mobile to the web and the challenges we faced. I’m also very happy to answer questions you have about this project.Hope you can join us on Tuesday!Cheers
Tom
March 07, 2021 at 09:22PM by tomgilder
https://ift.tt/3cbmBEN
This Tuesday: Flutter web meet-up. Quiz Mariam and Tim from Google!
Hello lovely Redditors!This Tuesday, we’re doing an online meet-up about Flutter web. We’ll be joined by Tim Sneath and Mariam Hasnany from the Flutter team. Got a question about Flutter web? Comment on this post, and we’ll ask them as many as possible.On Flutter’s blog posts about Flutter 2 this week you may have noticed screenshots of “Mun Moi”.I’m the lead developer of it, and I’ll be talking about bringing the app from mobile to the web and the challenges we faced. I’m also very happy to answer questions you have about this project.Hope you can join us on Tuesday!Cheers
Tom
March 07, 2021 at 09:22PM by tomgilder
https://ift.tt/3cbmBEN
New post on /r/flutterdev subreddit:
js or flutter
Hello guysI need to learn the most practical programming language, with the less learning curve, since my goal is not to be hired, my goal is to be able to create good looking SPAI was looking to learn js, etc... but i see maybe flutter is a better option for someone like me, who needs income along with my learning path.If you were in my shoes, will you start with js or flutter?
March 07, 2021 at 09:19PM by Fraustro
https://ift.tt/38jbzfJ
js or flutter
Hello guysI need to learn the most practical programming language, with the less learning curve, since my goal is not to be hired, my goal is to be able to create good looking SPAI was looking to learn js, etc... but i see maybe flutter is a better option for someone like me, who needs income along with my learning path.If you were in my shoes, will you start with js or flutter?
March 07, 2021 at 09:19PM by Fraustro
https://ift.tt/38jbzfJ
reddit
js or flutter
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
Layout for Multiple Devices
Hi, I am trying to create an app and am having trouble getting everything to fit on all screens, not just native to one device. I have tried Safe area, MediaQuery, still can't seem to get anything right. Is there any way that I should specifically attack this problem? Thanks.
March 07, 2021 at 10:30PM by Mark Valeriani
https://ift.tt/2MVI3Fr
Layout for Multiple Devices
Hi, I am trying to create an app and am having trouble getting everything to fit on all screens, not just native to one device. I have tried Safe area, MediaQuery, still can't seem to get anything right. Is there any way that I should specifically attack this problem? Thanks.
March 07, 2021 at 10:30PM by Mark Valeriani
https://ift.tt/2MVI3Fr
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:
Recommend me a solid flutter starter boilerplate plz
Hi Devs,I am looking for a very good flutter starter that has the following thingsMust haveRiverpod, Provider or any state managementLogging( https://pub.dev/packages/logging) and logging appenders package set up via isolatesFreezed annotation or Json annotationUtility packages like meta, device info and package info, pathHive or dart based persistenceTranslations and locale setupA good architecture separating themes, colors, and fonts( google fonts)Nice to haveGoogle analytics using Navigation observersGraphql and/or Firebasehttpmockito and file pickerFastLane or CodeMagic integrationI liked a few, especially the firebase starterkit which is firebase heavy but would like to know more
March 07, 2021 at 11:01PM by p2harry
https://ift.tt/2O9Mg92
Recommend me a solid flutter starter boilerplate plz
Hi Devs,I am looking for a very good flutter starter that has the following thingsMust haveRiverpod, Provider or any state managementLogging( https://pub.dev/packages/logging) and logging appenders package set up via isolatesFreezed annotation or Json annotationUtility packages like meta, device info and package info, pathHive or dart based persistenceTranslations and locale setupA good architecture separating themes, colors, and fonts( google fonts)Nice to haveGoogle analytics using Navigation observersGraphql and/or Firebasehttpmockito and file pickerFastLane or CodeMagic integrationI liked a few, especially the firebase starterkit which is firebase heavy but would like to know more
March 07, 2021 at 11:01PM by p2harry
https://ift.tt/2O9Mg92
Dart packages
logging | Dart package
Provides APIs for debugging and error logging, similar to loggers in other languages, such as the Closure JS Logger and java.util.logging.Logger.
New post on /r/flutterdev subreddit:
Flutter 2 Explained in 69 seconds
👉 https://www.youtube.com/watch?v=erNLqvxua1I👉 https://www.youtube.com/watch?v=erNLqvxua1I👉 https://www.youtube.com/watch?v=erNLqvxua1II don't know why I put 3 links
March 07, 2021 at 10:39PM by MappOnTrack
https://ift.tt/3kUJ2SO
Flutter 2 Explained in 69 seconds
👉 https://www.youtube.com/watch?v=erNLqvxua1I👉 https://www.youtube.com/watch?v=erNLqvxua1I👉 https://www.youtube.com/watch?v=erNLqvxua1II don't know why I put 3 links
March 07, 2021 at 10:39PM by MappOnTrack
https://ift.tt/3kUJ2SO
YouTube
Flutter 2 In 69 Seconds - Flutter Engage
Today Google released Flutter 2.0 !!
#Flutter2
Flutter tutorial.
Looking for specific Flutter content? Subscribe here! ➡️ https://www.youtube.com/c/fluttermapp?sub_confirmation=1
📚 Udemy course The Complete Flutter Bootcamp:
Zero to Hero in Flutter Dart…
#Flutter2
Flutter tutorial.
Looking for specific Flutter content? Subscribe here! ➡️ https://www.youtube.com/c/fluttermapp?sub_confirmation=1
📚 Udemy course The Complete Flutter Bootcamp:
Zero to Hero in Flutter Dart…
New post on /r/flutterdev subreddit:
Flutter Tutorial - In App Rating - Rate My App (Johannes Milke)
https://www.youtube.com/watch?v=zquHzDk7auE
March 07, 2021 at 11:46PM by JohannesMilke
https://ift.tt/3ehDErJ
Flutter Tutorial - In App Rating - Rate My App (Johannes Milke)
https://www.youtube.com/watch?v=zquHzDk7auE
March 07, 2021 at 11:46PM by JohannesMilke
https://ift.tt/3ehDErJ
YouTube
Flutter Tutorial - In App Rating For AppStore & PlayStore - Rate My App
With the Flutter In App Rating, you can redirect the user to the Playstore & AppStore to leave a review & to rate your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
👉 12 Week Flutter Training…