New post on /r/flutterdev subreddit:
state of the flame game engine
I get the sense that it's still in its nascent stages, and not particularly popular, but with Flutter 2, it seems like the flutter team is serious about making flutter portable, meaning that it should be realistic to write a game in flutter and be able to release it to desktop, web and mobile. Seems like an interesting option, and could perhaps help encourage more support behind the flame project.Curious what people's experience are with it, and how people like it compared to Godot or Unity, or pure script based engines like Love2D.
March 11, 2021 at 02:51AM by masamunexs
https://ift.tt/3l2dk6e
state of the flame game engine
I get the sense that it's still in its nascent stages, and not particularly popular, but with Flutter 2, it seems like the flutter team is serious about making flutter portable, meaning that it should be realistic to write a game in flutter and be able to release it to desktop, web and mobile. Seems like an interesting option, and could perhaps help encourage more support behind the flame project.Curious what people's experience are with it, and how people like it compared to Godot or Unity, or pure script based engines like Love2D.
March 11, 2021 at 02:51AM by masamunexs
https://ift.tt/3l2dk6e
Reddit
[deleted by user] : r/FlutterDev
29 votes, 20 comments. 105K subscribers in the FlutterDev community. A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
The 3 Disruptive Flutter 2.0 Updates
https://youtu.be/n4S0KX2J2Cw
March 11, 2021 at 02:19AM by thehappyharis
https://ift.tt/3rHSoUI
The 3 Disruptive Flutter 2.0 Updates
https://youtu.be/n4S0KX2J2Cw
March 11, 2021 at 02:19AM by thehappyharis
https://ift.tt/3rHSoUI
YouTube
3 Disruptive Flutter 2.0 Updates
I believe that there are 3 disruptive Flutter 2.0 updates: Ubuntu support for Flutter, Toyota infotainment in Flutter and Static meta programming.
Join the Pro Group: https://forms.gle/TDgR2tfyUX3BfYeZ9
👉 Subscribe to our weekly Flutter newsletter:
ht…
Join the Pro Group: https://forms.gle/TDgR2tfyUX3BfYeZ9
👉 Subscribe to our weekly Flutter newsletter:
ht…
New post on /r/flutterdev subreddit:
Flutter is no longer a cross-platform framework
By Luke Urban: "Since the release of Flutter 2.0, I began to see the hype going a little bit too far. Don’t get me wrong I am a big fan of Flutter and I will forever be an advocate for it.I use Flutter in my daily work building iOS and Android app. Every day I see the advantages and disadvantages of Flutter since the app that I am working on was previously written natively in Kotlin and Swift with all the perks you can imagine: scan/page recognition, pin/biometric app authentication, notifications, firebase statistics, along with very advanced user flow."More of the article >> here <<
March 11, 2021 at 03:20AM by Fewthp
https://ift.tt/3coAOOK
Flutter is no longer a cross-platform framework
By Luke Urban: "Since the release of Flutter 2.0, I began to see the hype going a little bit too far. Don’t get me wrong I am a big fan of Flutter and I will forever be an advocate for it.I use Flutter in my daily work building iOS and Android app. Every day I see the advantages and disadvantages of Flutter since the app that I am working on was previously written natively in Kotlin and Swift with all the perks you can imagine: scan/page recognition, pin/biometric app authentication, notifications, firebase statistics, along with very advanced user flow."More of the article >> here <<
March 11, 2021 at 03:20AM by Fewthp
https://ift.tt/3coAOOK
Medium
Flutter is no longer a cross-platform framework
…and why I think we should call it differently.
New post on /r/flutterdev subreddit:
How should I learn Flutter and Dart from scratch?
I am planning on learning Flutter from scratch and I do not have any programming background and have never coded. I want to build a Flutter educational game for mobile. What languages, technologies and skills should I learn before attempting to learn Dart and Flutter?
March 11, 2021 at 04:52AM by KEEPREADING2604
https://ift.tt/3vd35jY
How should I learn Flutter and Dart from scratch?
I am planning on learning Flutter from scratch and I do not have any programming background and have never coded. I want to build a Flutter educational game for mobile. What languages, technologies and skills should I learn before attempting to learn Dart and Flutter?
March 11, 2021 at 04:52AM by KEEPREADING2604
https://ift.tt/3vd35jY
Reddit
r/FlutterDev on Reddit: How should I learn Flutter and Dart from scratch?
Posted by u/KEEPREADING2604 - 1 vote and 9 comments
New post on /r/flutterdev subreddit:
Create publicly available source code generator for using with builder `build_it`
The `build it`is a builder that makes publicly available third-party source code generators and runs them during the build process for rapid development.https://github.com/mezoni/build_itThe
The builder executes these generators that generates ready-to-use files (or files for other builders or generators).
The configurations for generators are described in the YAML format (as you want).Try to create your own generator that will do the chores for you while building the project.
For example, it can generate many different classes that you often have to write by hand.
Or, on the contrary, your generator can generate a large complex class or even an entire library. It's up to you to decide what you want.
Automate the development process.
No limitation, generate any source code and it will be correctly aligned with other source code at build time.Link to the simplest generator:
https://github.com/mezoni/build_it/blob/main/example/example.dartIt is assumed that the generator is in the
March 11, 2021 at 06:46AM by andrew_mezoni
https://ift.tt/2PJISC6
Create publicly available source code generator for using with builder `build_it`
The `build it`is a builder that makes publicly available third-party source code generators and runs them during the build process for rapid development.https://github.com/mezoni/build_itThe
build\_it
builder directly executes third-party (or your own) generators for you.The builder executes these generators that generates ready-to-use files (or files for other builders or generators).
The configurations for generators are described in the YAML format (as you want).Try to create your own generator that will do the chores for you while building the project.
For example, it can generate many different classes that you often have to write by hand.
Or, on the contrary, your generator can generate a large complex class or even an entire library. It's up to you to decide what you want.
Automate the development process.
No limitation, generate any source code and it will be correctly aligned with other source code at build time.Link to the simplest generator:
https://github.com/mezoni/build_it/blob/main/example/example.dartIt is assumed that the generator is in the
build_it_test
package and added dev
dependencies to this package in pubspec.yaml
.The configuration for this generator:my_code.yaml
```yamlformat: name: build_it language: version: "2.10" # If you need it generator:name: build_it_test:fooname: "Jack" ```Result of work:```dart // GENERATED CODE - DO NOT MODIFY BY HAND// @dart = 2.10import 'dart:io';// ************************************************************************** // build_it: build_it_test:foo // **************************************************************************void main() { stdout.writeln('Hello, Jack'); }```March 11, 2021 at 06:46AM by andrew_mezoni
https://ift.tt/2PJISC6
GitHub
GitHub - mezoni/build_it: The `build_it`is a builder that makes publicly available third-party source code generators and runs…
The `build_it`is a builder that makes publicly available third-party source code generators and runs them during the build process for rapid development. - GitHub - mezoni/build_it: The `build_it`i...
New tweet from FlutterDev:
🎉 ¡Todos están invitados!#Flutter Guatemala will host @ditman from the Flutter team for Flutter 2 updates in Spanish for #FlutterEngage Extended Guatemala!
Set a reminder → https://t.co/5D4l9O9vlJ pic.twitter.com/ytj5OrUXhS— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 08:59AM
http://twitter.com/FlutterDev/status/1369920973026246656
🎉 ¡Todos están invitados!#Flutter Guatemala will host @ditman from the Flutter team for Flutter 2 updates in Spanish for #FlutterEngage Extended Guatemala!
Set a reminder → https://t.co/5D4l9O9vlJ pic.twitter.com/ytj5OrUXhS— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 08:59AM
http://twitter.com/FlutterDev/status/1369920973026246656
Twitter
News about #flutter on Twitter
See news about #flutter on Twitter. Read what people are saying and join the conversation around this hashtag.
New post on /r/flutterdev subreddit:
Flutter courses - Your experience?
Sorry if this is maybe more appropriate for /r/flutterhelp? I wasn't sure. Was hoping for more of a discussion than that subreddit seems to offer.I'm wondering if you guys have any experience or recommendations for Flutter courses.I took Angela's appbrewery course a while back (the full paid version) but I got wrapped up in other stuff after finishing and wasn't able to really cement much of the content. It also didn't feel very comprehensive. I didn't feel "ready" to create an app from scratch to appstore, you know? And even after watching the state management section multiple times, I still felt confused. Maybe I'm just dumb. What are your thoughts?I was looking at Maximillian's Flutter course too - thought it might be a good idea for a refresher and maybe get a slightly different perspective on things? I feel like I have to at least review things from scratch to get started again. His course also looks more comprehensive than Angela's course - has anyone taken it? Thoughts?Any other course ideas? I hear Flutter 2 is a thing now - does that play into or invalidate either of those courses?Really curious to hear about any courses you've taken and what you think! Good or bad!
March 11, 2021 at 09:14AM by emililililily
https://ift.tt/2N52HCW
Flutter courses - Your experience?
Sorry if this is maybe more appropriate for /r/flutterhelp? I wasn't sure. Was hoping for more of a discussion than that subreddit seems to offer.I'm wondering if you guys have any experience or recommendations for Flutter courses.I took Angela's appbrewery course a while back (the full paid version) but I got wrapped up in other stuff after finishing and wasn't able to really cement much of the content. It also didn't feel very comprehensive. I didn't feel "ready" to create an app from scratch to appstore, you know? And even after watching the state management section multiple times, I still felt confused. Maybe I'm just dumb. What are your thoughts?I was looking at Maximillian's Flutter course too - thought it might be a good idea for a refresher and maybe get a slightly different perspective on things? I feel like I have to at least review things from scratch to get started again. His course also looks more comprehensive than Angela's course - has anyone taken it? Thoughts?Any other course ideas? I hear Flutter 2 is a thing now - does that play into or invalidate either of those courses?Really curious to hear about any courses you've taken and what you think! Good or bad!
March 11, 2021 at 09:14AM by emililililily
https://ift.tt/2N52HCW
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on Flutter Dev Google group:
Can any one list out of url to unblock in order to work with Flutter
In my client machine all url has blocked. Need to create firewall request to open specific url. I have list out of below URL in order to work with flutter. https://ift.tt/1mvd6ms https://pub.dev/ https://flutter.dev/ Kindly let me know if need to add any more url.
March 11, 2021 at 10:12AM by ARUN KUMAR
https://ift.tt/2OCKGfL
Can any one list out of url to unblock in order to work with Flutter
In my client machine all url has blocked. Need to create firewall request to open specific url. I have list out of below URL in order to work with flutter. https://ift.tt/1mvd6ms https://pub.dev/ https://flutter.dev/ Kindly let me know if need to add any more url.
March 11, 2021 at 10:12AM by ARUN KUMAR
https://ift.tt/2OCKGfL
Dart packages
Pub is the package manager for the Dart programming language, containing reusable libraries & packages for Flutter, AngularDart, and general Dart programs.
New post on /r/flutterdev subreddit:
I made an outbound call app with flutter and twilio
Well I finally got my app running on my phone in profile mode. Here is the video demo I promised showing the functionality. Basically it makes an outbound call to the number entered by user. In this case its presumed the number is ones own so it can appear as if they are getting a legit call. I'll link to article discussing the "problem" this app solves in the comments. But it works!Hopefully will have apk out soon and will try to put in Apple app store.demo of my app making outbound call
March 11, 2021 at 10:56AM by Eurasiangal
https://ift.tt/2OjEitW
I made an outbound call app with flutter and twilio
Well I finally got my app running on my phone in profile mode. Here is the video demo I promised showing the functionality. Basically it makes an outbound call to the number entered by user. In this case its presumed the number is ones own so it can appear as if they are getting a legit call. I'll link to article discussing the "problem" this app solves in the comments. But it works!Hopefully will have apk out soon and will try to put in Apple app store.demo of my app making outbound call
March 11, 2021 at 10:56AM by Eurasiangal
https://ift.tt/2OjEitW
New post on /r/flutterdev subreddit:
Flutter Behind the Scene: Ahead Of Time vs. Just In Time
https://youtube.com/watch?v=FDr7WkcffeU&feature=share
March 11, 2021 at 11:40AM by faizollah
https://ift.tt/3qAlXGb
Flutter Behind the Scene: Ahead Of Time vs. Just In Time
https://youtube.com/watch?v=FDr7WkcffeU&feature=share
March 11, 2021 at 11:40AM by faizollah
https://ift.tt/3qAlXGb
YouTube
Flutter Behind the Scene: Ahead Of Time vs. Just In Time
Understanding what goes on behind your Flutter program helps you to make correct decisions. In this video, we see what computers do with your code and how they execute your code.
Please subscribe for future videos using this link: https://www.youtube.co…
Please subscribe for future videos using this link: https://www.youtube.co…
New post on /r/flutterdev subreddit:
Catch Flutter Application Exceptions
https://ift.tt/3qL0UB3
March 11, 2021 at 12:25PM by fredgrott
https://ift.tt/3vgOnZi
Catch Flutter Application Exceptions
https://ift.tt/3qL0UB3
March 11, 2021 at 12:25PM by fredgrott
https://ift.tt/3vgOnZi
Medium
Catch Flutter Application Exceptions
some secret power tips to catching application exceptions!
New post on /r/flutterdev subreddit:
A Real Life Guide To Sound Null Safety in Dart
https://ift.tt/3la5oQf
March 11, 2021 at 01:33PM by Elixane
https://ift.tt/3la5ojd
A Real Life Guide To Sound Null Safety in Dart
https://ift.tt/3la5oQf
March 11, 2021 at 01:33PM by Elixane
https://ift.tt/3la5ojd
Medium
A Real Life Guide To Dart Sound Null Safety
Flutter 2 and Dart 2.12 finally brings Sound Null Safety. You can use this guide to better understand Null Safety and migrate your own app
New post on /r/flutterdev subreddit:
Flutter Tutorial - Custom Paint (Johannes Milke)
https://www.youtube.com/watch?v=jaoJz3q9PmE
March 10, 2021 at 11:57PM by JohannesMilke
https://ift.tt/30vtfR7
Flutter Tutorial - Custom Paint (Johannes Milke)
https://www.youtube.com/watch?v=jaoJz3q9PmE
March 10, 2021 at 11:57PM by JohannesMilke
https://ift.tt/30vtfR7
YouTube
Flutter Tutorial - Custom Paint - Draw Line, Square, Rect, Circle, Triangle, Arc & Image
With the Flutter Custom Paint Widget, you can draw on a Canvas to control every pixel you are painting on the screen in Flutter.
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…
New post on Flutter Dev Google group:
Flutter beacon communication.
Hello every one! *I need help! * I have a beacon device from a company who sells beacon devices. So I brought 1 device. Now I want to *create an application *where I could *receive notifications *when I'm going *near to beacon*. I've been checking all *available packages *on *pub.dev *but I
March 11, 2021 at 02:24PM by Πέτρος Πολλάκης
https://ift.tt/3rEZ9X0
Flutter beacon communication.
Hello every one! *I need help! * I have a beacon device from a company who sells beacon devices. So I brought 1 device. Now I want to *create an application *where I could *receive notifications *when I'm going *near to beacon*. I've been checking all *available packages *on *pub.dev *but I
March 11, 2021 at 02:24PM by Πέτρος Πολλάκης
https://ift.tt/3rEZ9X0
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:
Flutter Icons, Simple Navigation & Co. - 08 - PUB.DEV RELEASES
https://youtube.com/watch?v=7ksHuUVtPq8&feature=share
March 11, 2021 at 03:47PM by syntacops
https://ift.tt/3vnEDwH
Flutter Icons, Simple Navigation & Co. - 08 - PUB.DEV RELEASES
https://youtube.com/watch?v=7ksHuUVtPq8&feature=share
March 11, 2021 at 03:47PM by syntacops
https://ift.tt/3vnEDwH
YouTube
Flutter Icons, Simple Navigation & Co. - 08 - PUB.DEV RELEASES
From Feb 22 to 28 we get around 133 new pub.dev releases. Among them a package providing flexible flutter icons for interfaces, diagrams, animations and more, a new simple way to navigate through flutter apps as alternative to navigator 2.0, a package to…
New post on /r/flutterdev subreddit:
Recreated the torus game from Exponential Idle in Flutter Web! Code is open source (see comments)
https://ift.tt/3rEJZBl
March 11, 2021 at 03:43PM by NNNTE
https://ift.tt/3bDXH1u
Recreated the torus game from Exponential Idle in Flutter Web! Code is open source (see comments)
https://ift.tt/3rEJZBl
March 11, 2021 at 03:43PM by NNNTE
https://ift.tt/3bDXH1u
forsythe.github.io
torus_puzzle
A new Flutter project.
New post on /r/flutterdev subreddit:
Hey guys, uploaded a new video, Book Reading App in flutter.Have a look and let me know your feesback in the comment section.
https://youtu.be/rRowTNhjufQ
March 11, 2021 at 06:16PM by praveenthedesigner
https://ift.tt/38rMgbm
Hey guys, uploaded a new video, Book Reading App in flutter.Have a look and let me know your feesback in the comment section.
https://youtu.be/rRowTNhjufQ
March 11, 2021 at 06:16PM by praveenthedesigner
https://ift.tt/38rMgbm
YouTube
Flutter | Book Reading App | UI Challenge
In this video, I have talked about how to create a book reading app in flutter. I hope you will like it.
Note: Reduce the speed of the video to see the realtime coding.
Note: 50% of this channel earning is used for Animal welfare.
Keep Learning,
Praveen…
Note: Reduce the speed of the video to see the realtime coding.
Note: 50% of this channel earning is used for Animal welfare.
Keep Learning,
Praveen…
New tweet from FlutterDev:
🤳 Did you catch the AR app built with #Flutter?
Beth and Rex shared the FIRST Wallace & Gromit feature length story by @fictioneersltd @thebigfixup and @aardman in over a decade at #FlutterEngage!
▶️ Check it out → https://t.co/6S39AUEvI7 pic.twitter.com/EftvdZkoKx— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 06:29PM
http://twitter.com/FlutterDev/status/1370064450871513090
🤳 Did you catch the AR app built with #Flutter?
Beth and Rex shared the FIRST Wallace & Gromit feature length story by @fictioneersltd @thebigfixup and @aardman in over a decade at #FlutterEngage!
▶️ Check it out → https://t.co/6S39AUEvI7 pic.twitter.com/EftvdZkoKx— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 06:29PM
http://twitter.com/FlutterDev/status/1370064450871513090
Twitter
News about #flutter on Twitter
See news about #flutter on Twitter. Read what people are saying and join the conversation around this hashtag.
New post on /r/flutterdev subreddit:
flutter_slidable (Package of the Week)
https://youtube.com/watch?v=QFcFEpFmNJ8&feature=share
March 11, 2021 at 07:02PM by Pixelreddit
https://ift.tt/3rIPHC8
flutter_slidable (Package of the Week)
https://youtube.com/watch?v=QFcFEpFmNJ8&feature=share
March 11, 2021 at 07:02PM by Pixelreddit
https://ift.tt/3rIPHC8
YouTube
flutter_slidable (Flutter Package of the Week)
Flutter_slideable is a package that provides a slidable widget that lets your users swipe to reveal actions without a lot of hassle. Learn how to use this package and define your actions.
Learn more about flutter_slidable → http://goo.gle/3dpqjNx
This video…
Learn more about flutter_slidable → http://goo.gle/3dpqjNx
This video…
New post on /r/flutterdev subreddit:
new package Login design
Hello friends, I created a new package to incorporate a login to our projects, the design was beautiful, if you like it, you can share :)login fresh
March 11, 2021 at 06:41PM by krysthyan09
https://ift.tt/3vqiz4u
new package Login design
Hello friends, I created a new package to incorporate a login to our projects, the design was beautiful, if you like it, you can share :)login fresh
March 11, 2021 at 06:41PM by krysthyan09
https://ift.tt/3vqiz4u
Dart packages
login_fresh | Flutter Package
LoginFresh is a user-friendly design where you can incorporate functionalities such as signUp, reset password or login with social networks
New tweet from FlutterDev:
💙— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 07:16PM
http://twitter.com/FlutterDev/status/1370076255408648192
💙— Flutter (@FlutterDev) March 11, 2021
March 11, 2021 at 07:16PM
http://twitter.com/FlutterDev/status/1370076255408648192
Twitter
Flutter
@danielthall @Toyota 💙