New post on /r/flutterdev subreddit:
Dart Functions Framework with Google Cloud Platform to manage Firebase backend?
I used to use the firebase cloud functions interop package to write functions in dart, which would then be compiled to javascript and served as cloud functions. Great for manipulating firebase on event triggers.The package hasn't been updated in a while so I'm looking at other alternatives to do cloud functions for firebase.Is there a good resource out there for using the functions framework package, maybe hosting them on google cloud platform, but using it to manage firebase through the Admin SDK? Extra points if I could make this work with firebase cloud function triggers like when a user is created or when a database entry is updated, etc.Alternatively if anyone has alternate ideas for what I'm trying to accomplish please share them. (Before anyone suggests just doing cloud functions in another language, I might end up doing so but I would really prefer looking at what full stack dart options I have.)Thanks!
June 03, 2021 at 02:44PM by Shazamo333
https://ift.tt/3fOgl8Y
Dart Functions Framework with Google Cloud Platform to manage Firebase backend?
I used to use the firebase cloud functions interop package to write functions in dart, which would then be compiled to javascript and served as cloud functions. Great for manipulating firebase on event triggers.The package hasn't been updated in a while so I'm looking at other alternatives to do cloud functions for firebase.Is there a good resource out there for using the functions framework package, maybe hosting them on google cloud platform, but using it to manage firebase through the Admin SDK? Extra points if I could make this work with firebase cloud function triggers like when a user is created or when a database entry is updated, etc.Alternatively if anyone has alternate ideas for what I'm trying to accomplish please share them. (Before anyone suggests just doing cloud functions in another language, I might end up doing so but I would really prefer looking at what full stack dart options I have.)Thanks!
June 03, 2021 at 02:44PM by Shazamo333
https://ift.tt/3fOgl8Y
Dart packages
firebase_functions_interop | Dart Package
Firebase Cloud Functions SDK for Dart written as a JS interop wrapper for official Node.js SDK.
New post on /r/flutterdev subreddit:
Flutter Download Manager, Rich Text Editor & Co. - 20 - PUB.DEV RELEASES
https://youtube.com/watch?v=tBjqAAqmp1E&feature=share
June 03, 2021 at 03:32PM by syntacops
https://ift.tt/2RhxHBQ
Flutter Download Manager, Rich Text Editor & Co. - 20 - PUB.DEV RELEASES
https://youtube.com/watch?v=tBjqAAqmp1E&feature=share
June 03, 2021 at 03:32PM by syntacops
https://ift.tt/2RhxHBQ
YouTube
Flutter Download Manager, Rich Text Editor & Co. - 20 - PUB.DEV RELEASES
The most liked Flutter package of week 20 (From May 17 to 23) is a Flutter Download Manager. On top that we also get a Flutter Rich Text Editor, a nice 3D button and 7 more package releases. #flutter #download #manager
📺 FULL PLAYLIST: http://releases.syntacops.com…
📺 FULL PLAYLIST: http://releases.syntacops.com…
New post on /r/flutterdev subreddit:
State Management with Bloc - What is the best way to handle and copy states?
I mostly use Bloc for state management (and sometimes provider for smaller parts of the UI - or at least cubit). The only thing I really hate about Bloc is the states. I always create a StateBase class and extend it with stuff like:```dartclass BaseState {}class Loading extends BaseState {}class Loaded extends BaseState {String myData;// some constructor}```And in the build method we have to make type checks like this:```dartif (state is LoadingState) {} else if (state is Loaded) {} else {// have to do this for the type checker but we never reach this}```This is so much boilerplate I think and we still have to handle think about using Equatable and copyWith methods for all State and Data classes so that we actually trigger a rebuild when emitting/yielding a new state.I liked the way Freezed is handling all the copyWith and hashCode stuff for me but in general I hate Freezed since the code generation introduces new code I don't know about and the syntax of Freezed is absolutely counterintuitive with all the abstract classes. This is sad since you can't read the code easily anymore which is too big of a tradeoff because good code is code which you can easily read and understand.So how do you guys use Bloc in combination with your data classes and how do you guys code states? Did you guys have the same experience with Freezed?
June 03, 2021 at 05:04PM by Hard_Veur
https://ift.tt/2Rh6GhQ
State Management with Bloc - What is the best way to handle and copy states?
I mostly use Bloc for state management (and sometimes provider for smaller parts of the UI - or at least cubit). The only thing I really hate about Bloc is the states. I always create a StateBase class and extend it with stuff like:```dartclass BaseState {}class Loading extends BaseState {}class Loaded extends BaseState {String myData;// some constructor}```And in the build method we have to make type checks like this:```dartif (state is LoadingState) {} else if (state is Loaded) {} else {// have to do this for the type checker but we never reach this}```This is so much boilerplate I think and we still have to handle think about using Equatable and copyWith methods for all State and Data classes so that we actually trigger a rebuild when emitting/yielding a new state.I liked the way Freezed is handling all the copyWith and hashCode stuff for me but in general I hate Freezed since the code generation introduces new code I don't know about and the syntax of Freezed is absolutely counterintuitive with all the abstract classes. This is sad since you can't read the code easily anymore which is too big of a tradeoff because good code is code which you can easily read and understand.So how do you guys use Bloc in combination with your data classes and how do you guys code states? Did you guys have the same experience with Freezed?
June 03, 2021 at 05:04PM by Hard_Veur
https://ift.tt/2Rh6GhQ
reddit
State Management with Bloc - What is the best way to handle and...
I mostly use Bloc for state management (and sometimes provider for smaller parts of the UI - or at least cubit). The only thing I really hate...
New post on /r/flutterdev subreddit:
How do you guys go about error handling in your architecture? Which is the best way you found?
This is a problem that I think we all came across but I still think I didn't found the perfect solution. I generally go with a 3 layer architecture which is pretty common I think (e.g. MVVM, MVP/MVC....). I separat my project in presentation/application, domain and infrastructure (presentation is UI stuff, application is state management, domain is for the data classes and infrastructure is for the repos).The problem now is how to pass an Error from the repository up to the presentation in the best way? I started by the most trivial approach: if I get null as return type something went wrong. This is obviously bad since we don't know what and where something went wrong (I assume I catch all errors and handle them in the repo since everything else means risking a red screen of death in flutter). I also saw the complete over engineered method from ResoCoder DDD course which used Either and Options all over the place to handle errors.What I'm interested in is how do you handle errors probably? (and how do you pass them to the user - like showing a server error message or no connection error?) I mean it isn't relevant which architecture you use since no matter if MVC or whatever we all need error handling.
June 03, 2021 at 04:52PM by Hard_Veur
https://ift.tt/2TIyyfX
How do you guys go about error handling in your architecture? Which is the best way you found?
This is a problem that I think we all came across but I still think I didn't found the perfect solution. I generally go with a 3 layer architecture which is pretty common I think (e.g. MVVM, MVP/MVC....). I separat my project in presentation/application, domain and infrastructure (presentation is UI stuff, application is state management, domain is for the data classes and infrastructure is for the repos).The problem now is how to pass an Error from the repository up to the presentation in the best way? I started by the most trivial approach: if I get null as return type something went wrong. This is obviously bad since we don't know what and where something went wrong (I assume I catch all errors and handle them in the repo since everything else means risking a red screen of death in flutter). I also saw the complete over engineered method from ResoCoder DDD course which used Either and Options all over the place to handle errors.What I'm interested in is how do you handle errors probably? (and how do you pass them to the user - like showing a server error message or no connection error?) I mean it isn't relevant which architecture you use since no matter if MVC or whatever we all need error handling.
June 03, 2021 at 04:52PM by Hard_Veur
https://ift.tt/2TIyyfX
reddit
How do you guys go about error handling in your architecture?...
This is a problem that I think we all came across but I still think I didn't found the perfect solution. I generally go with a 3 layer...
New post on /r/flutterdev subreddit:
Introducing NativeShell for Flutter
https://ift.tt/3yX8FJf
June 03, 2021 at 04:18PM by jpnurmi
https://ift.tt/2TDlCI6
Introducing NativeShell for Flutter
https://ift.tt/3yX8FJf
June 03, 2021 at 04:18PM by jpnurmi
https://ift.tt/2TDlCI6
Matejknopp
Introducing NativeShell for Flutter
arcane arts of desktop software development
New post on /r/flutterdev subreddit:
super_editor | Flutter Package | Configurable, composeable, extensible text editor and document renderer for Flutter.
https://ift.tt/3yX9aTH
June 03, 2021 at 06:35PM by EngineerScientist
https://ift.tt/34KsRjS
super_editor | Flutter Package | Configurable, composeable, extensible text editor and document renderer for Flutter.
https://ift.tt/3yX9aTH
June 03, 2021 at 06:35PM by EngineerScientist
https://ift.tt/34KsRjS
Dart packages
super_editor | Flutter Package
Configurable, composeable, extensible text editor and document renderer for Flutter.
New post on Flutter Dev Google group:
Flutter web automation options for deployed web apps
We want to implement end-to-end tests for workflows in which a Flutter web app is only one of several web applications to be automated in a test environment. In short, I'd like to be able to point flutter drive to a web application URL instead of a main dart file. Even better would be an
June 03, 2021 at 09:56PM by Heinrich Janzing
https://ift.tt/3z0138T
Flutter web automation options for deployed web apps
We want to implement end-to-end tests for workflows in which a Flutter web app is only one of several web applications to be automated in a test environment. In short, I'd like to be able to point flutter drive to a web application URL instead of a main dart file. Even better would be an
June 03, 2021 at 09:56PM by Heinrich Janzing
https://ift.tt/3z0138T
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:
A Flutter document announcement!
https://www.youtube.com/watch?v=nZ9pWg_QOwM
June 03, 2021 at 09:59PM by SuperDeclarative
https://ift.tt/3ifGuiF
A Flutter document announcement!
https://www.youtube.com/watch?v=nZ9pWg_QOwM
June 03, 2021 at 09:59PM by SuperDeclarative
https://ift.tt/3ifGuiF
YouTube
A Flutter document announcement!
We finish up our discussion of documents in #Flutter with an announcement!
Super Editor on pub.dev:
https://pub.dev/packages/super_editor
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com…
Super Editor on pub.dev:
https://pub.dev/packages/super_editor
---
Follow:
https://twitter.com/suprdeclarative
Hourly Flutter Consulting:
https://consulting.superdeclarative.com…
New post on /r/flutterdev subreddit:
Alerting mistakes you are making when you Hire Flutter Developer for your App.
https://ift.tt/3vQ0koQ
June 03, 2021 at 09:25PM by alexisgilburt
https://ift.tt/34YnNsh
Alerting mistakes you are making when you Hire Flutter Developer for your App.
https://ift.tt/3vQ0koQ
June 03, 2021 at 09:25PM by alexisgilburt
https://ift.tt/34YnNsh
Medium
Alerting mistakes you are making when you Hire Flutter Developer for your App.
Find out every mistake that you didn't know you were doing while hiring Flutter Developer!
New post on /r/flutterdev subreddit:
Keeping up with new features and updates
hi guys, im fairly new to flutter and dart.i basically am starting a flutter and dart course and i have this question, how am i gonna be able to keep up with the developing of the language?? is there a way to see which stuff changes overtime?how do flutter updates work? if i am coding an app while the language changes, how does it affect my code?also, can yall see if this course is outdated or not? i just bought it and i dont want to learn outdated stuffhttps://www.udemy.com/course/learn-flutter-dart-to-build-ios-android-apps/thanks
June 03, 2021 at 11:41PM by FilthyFrankuuu
https://ift.tt/2SaOR4D
Keeping up with new features and updates
hi guys, im fairly new to flutter and dart.i basically am starting a flutter and dart course and i have this question, how am i gonna be able to keep up with the developing of the language?? is there a way to see which stuff changes overtime?how do flutter updates work? if i am coding an app while the language changes, how does it affect my code?also, can yall see if this course is outdated or not? i just bought it and i dont want to learn outdated stuffhttps://www.udemy.com/course/learn-flutter-dart-to-build-ios-android-apps/thanks
June 03, 2021 at 11:41PM by FilthyFrankuuu
https://ift.tt/2SaOR4D
Udemy
Flutter & Dart - The Complete Guide [2025 Edition]
A Complete Guide to the Flutter SDK & Flutter Framework for building native iOS and Android apps
New post on /r/flutterdev subreddit:
How does the UI become functional?
I'm sorry this is a very beginner question.So I saw some great flutter UI tutorials on YouTube and I'm just wondering is it possible to make all those beautiful UI functional or not.For example:- I saw a beautiful pie chart UI but can I actually implement it to represent the data taken from the app users?If so how does it basically work?I'm gonna purchase a flutter course this week and one day I'd love to turn those beautiful UI into fully functional apps. That's why I'm curious.Thanks!
June 04, 2021 at 12:20AM by Stoic_Dude_2001
https://ift.tt/3gc90iR
How does the UI become functional?
I'm sorry this is a very beginner question.So I saw some great flutter UI tutorials on YouTube and I'm just wondering is it possible to make all those beautiful UI functional or not.For example:- I saw a beautiful pie chart UI but can I actually implement it to represent the data taken from the app users?If so how does it basically work?I'm gonna purchase a flutter course this week and one day I'd love to turn those beautiful UI into fully functional apps. That's why I'm curious.Thanks!
June 04, 2021 at 12:20AM by Stoic_Dude_2001
https://ift.tt/3gc90iR
Reddit
How does the UI become functional? : r/FlutterDev
109K subscribers in the FlutterDev community. A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
Re: Convert Java code to Dart
Can you explain how the two pieces of code achieve matching *é *for *e *respectively? (Both Java and Dart) On Thu, Jun 3, 2021 at 21:17 ZA
Re: Convert Java code to Dart
Can you explain how the two pieces of code achieve matching *é *for *e *respectively? (Both Java and Dart) On Thu, Jun 3, 2021 at 21:17 ZA
New post on /r/flutterdev subreddit:
Flutter 2.2: Question about the new "Android deferred components"
Are you guys familiar with the manga reading app Tachiyomi? (kotlin android app)This app has a very clever way of splitting components. They call it "extensions". Each extension is in a form of a
June 04, 2021 at 05:02AM by yurabe
https://ift.tt/2SWS3AI
Flutter 2.2: Question about the new "Android deferred components"
Are you guys familiar with the manga reading app Tachiyomi? (kotlin android app)This app has a very clever way of splitting components. They call it "extensions". Each extension is in a form of a
.apk
file which can be downloaded and installed. And it will not add a new app icon in the device menu. The app itself will just have additional functionalities.My question is: Are these two similar? If not, what's the difference?June 04, 2021 at 05:02AM by yurabe
https://ift.tt/2SWS3AI
New post on Flutter Dev Google group:
The build failed likely due to AndroidX incompatibilities in a plugin. The tool is about to try using Jetifier to solve the incompatibility. Building plugin cloud_firestore...
Note: F:\softwares\flutter_windows_1.17.5-stable\flutter\.pub-cache\hosted\ pub.dartlang.org\cloud_firestore-2.2.1\android\src\main\java\io\flutter\plugins\firebase\firestore\FlutterFirebaseFirestorePlugin.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for
June 04, 2021 at 07:58AM by codewith Rana
https://ift.tt/3gb1Smv
The build failed likely due to AndroidX incompatibilities in a plugin. The tool is about to try using Jetifier to solve the incompatibility. Building plugin cloud_firestore...
Note: F:\softwares\flutter_windows_1.17.5-stable\flutter\.pub-cache\hosted\ pub.dartlang.org\cloud_firestore-2.2.1\android\src\main\java\io\flutter\plugins\firebase\firestore\FlutterFirebaseFirestorePlugin.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for
June 04, 2021 at 07:58AM by codewith Rana
https://ift.tt/3gb1Smv
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 Flutter Dev Google group:
Good Morning
I have a problem I'm using Firebase in that we can authenticate either mobile number or Google signin but I need to use both for verifying both email and password. So give me a solution If I good a good verification method for Email means i can authenticate with mobile number and verify email
June 04, 2021 at 08:46AM by Navaneethan MacAppStudio
https://ift.tt/3pkwyWD
Good Morning
I have a problem I'm using Firebase in that we can authenticate either mobile number or Google signin but I need to use both for verifying both email and password. So give me a solution If I good a good verification method for Email means i can authenticate with mobile number and verify email
June 04, 2021 at 08:46AM by Navaneethan MacAppStudio
https://ift.tt/3pkwyWD
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:
Create a Simple Contact App with Faker & Flutter
https://ift.tt/3fOtKOw
June 04, 2021 at 08:32AM by polilluminato
https://ift.tt/3itZWbV
Create a Simple Contact App with Faker & Flutter
https://ift.tt/3fOtKOw
June 04, 2021 at 08:32AM by polilluminato
https://ift.tt/3itZWbV
Flutter and Other Experiments
Create a Simple Contact App with Faker & Flutter
I this article you will learn how to build a Simple Flutter App to display a Contact List with fake data with Faker.
New post on /r/flutterdev subreddit:
I have Mac OS Big Sur. Do I need to do some extra steps to change my terminal from bash to zsh, prior to installing Flutter?
I feel like I shouldn't have updated to Big Sur so fast, but now that I have, is this a necessary step to make everything work better or should I just leave it alone?Is there anything else I should do to make sure that Flutter works with Big Sur?
June 04, 2021 at 09:25AM by JustYourLocalDude
https://ift.tt/2THilaL
I have Mac OS Big Sur. Do I need to do some extra steps to change my terminal from bash to zsh, prior to installing Flutter?
I feel like I shouldn't have updated to Big Sur so fast, but now that I have, is this a necessary step to make everything work better or should I just leave it alone?Is there anything else I should do to make sure that Flutter works with Big Sur?
June 04, 2021 at 09:25AM by JustYourLocalDude
https://ift.tt/2THilaL
reddit
I have Mac OS Big Sur. Do I need to do some extra steps to change...
I feel like I shouldn't have updated to Big Sur so fast, but now that I have, is this a necessary step to make everything work better or should I...
New post on /r/flutterdev subreddit:
Facing issue while creating iOS build (Flutter)
hello all
I am facing issue while creating iOS build (flutter )the error is throwing in Xcode isCommand PhaseScriptExecution failed with a nonzero exit code
June 04, 2021 at 11:27AM by jaya2905
https://ift.tt/34JIrfq
Facing issue while creating iOS build (Flutter)
hello all
I am facing issue while creating iOS build (flutter )the error is throwing in Xcode isCommand PhaseScriptExecution failed with a nonzero exit code
June 04, 2021 at 11:27AM by jaya2905
https://ift.tt/34JIrfq
reddit
Facing issue while creating iOS build (Flutter)
hello all I am facing issue while creating iOS build (flutter ) the error is throwing in Xcode is Command PhaseScriptExecution failed with...
New post on Flutter Dev Google group:
Architectural strategy for sharing mobile application in flutter
Good morning I'm currently developing an application project using flutter, which initially has a structure coupled with all features and libraries in just one repository, applying the web view strategy in scenarios where it is necessary to display items developed in other technologies (Ex:
June 04, 2021 at 02:07PM by Lucas Andrade
https://ift.tt/34NHaE4
Architectural strategy for sharing mobile application in flutter
Good morning I'm currently developing an application project using flutter, which initially has a structure coupled with all features and libraries in just one repository, applying the web view strategy in scenarios where it is necessary to display items developed in other technologies (Ex:
June 04, 2021 at 02:07PM by Lucas Andrade
https://ift.tt/34NHaE4
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 Flutter Dev Google group:
Status code 200, but getting storage error
Here is the complete question. I am new to flutter so kindly bear with my noob questions. Stack overflow < https://stackoverflow.com/questions/67827982/status-code-200-but-getting-storage-error >
June 04, 2021 at 02:54PM by go gone
https://ift.tt/2SVl9Az
Status code 200, but getting storage error
Here is the complete question. I am new to flutter so kindly bear with my noob questions. Stack overflow < https://stackoverflow.com/questions/67827982/status-code-200-but-getting-storage-error >
June 04, 2021 at 02:54PM by go gone
https://ift.tt/2SVl9Az
Stack Overflow
Status code 200, but getting storage error
I am using dio for sending my request to database. I tried to uplaod an image along with the "purpose field and send to database using multipartfile as follows:
uploadImages(token, productimage,
uploadImages(token, productimage,
New post on /r/flutterdev subreddit:
App Feedback Thread - June 04, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
June 04, 2021 at 03:00PM by AutoModerator
https://ift.tt/3pjcWT1
App Feedback Thread - June 04, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods
June 04, 2021 at 03:00PM by AutoModerator
https://ift.tt/3pjcWT1
reddit
App Feedback Thread - June 04, 2021
This thread is for getting feedback on your own apps. ## Developers: * must **provide feedback** for others * must include **Play Store**, **App...