New post on /r/flutterdev subreddit:
Flutter architecture/design pattern.
This may come as a noob question, but I would like to know what is the architecture /design pattern for the building a flutter application with bloc/riverpod? It would be great if someone can help with that and tell me resources to learn also? Thank you! submitted by /u/NanatsuXIV link ... https://www.reddit.com/r/FlutterDev/comments/vzp9cj/flutter_architecturedesign_pattern/
Flutter architecture/design pattern.
This may come as a noob question, but I would like to know what is the architecture /design pattern for the building a flutter application with bloc/riverpod? It would be great if someone can help with that and tell me resources to learn also? Thank you! submitted by /u/NanatsuXIV link ... https://www.reddit.com/r/FlutterDev/comments/vzp9cj/flutter_architecturedesign_pattern/
New post on /r/flutterdev subreddit:
What order should I make the app?
Hi! I'm making an event booking and ticketing sort of app, and I'm kinda new to this app dev thing. I've done a few things before, but I just had a question. What order should I make the app? I mean, in what page order. Do I start by making the login page, the home page, the individual event... https://www.reddit.com/r/FlutterDev/comments/w0c1zg/what_order_should_i_make_the_app/
What order should I make the app?
Hi! I'm making an event booking and ticketing sort of app, and I'm kinda new to this app dev thing. I've done a few things before, but I just had a question. What order should I make the app? I mean, in what page order. Do I start by making the login page, the home page, the individual event... https://www.reddit.com/r/FlutterDev/comments/w0c1zg/what_order_should_i_make_the_app/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
copyWith for constants
I've got this constant kConst = ElevatedButton.styleFrom( shape:RoundedRectangleBorder(borderRadius: BorderRadius.circular(0.0)), primary: Color.fromARGB(255, 233 , 102, 208), elevation: 0,), and I want to use it with changing the primary color, so I tried kConst.copyWith(primary:... https://www.reddit.com/r/FlutterDev/comments/w0cdnz/copywith_for_constants/
copyWith for constants
I've got this constant kConst = ElevatedButton.styleFrom( shape:RoundedRectangleBorder(borderRadius: BorderRadius.circular(0.0)), primary: Color.fromARGB(255, 233 , 102, 208), elevation: 0,), and I want to use it with changing the primary color, so I tried kConst.copyWith(primary:... https://www.reddit.com/r/FlutterDev/comments/w0cdnz/copywith_for_constants/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
is there any tutorial for setting up the full server with flutter dart and mongodb with aws ?
I need it so much submitted by /u/UpsetMedium5485 link comments https://www.reddit.com/r/FlutterDev/comments/w0lgkb/is_there_any_tutorial_for_setting_up_the_full/
is there any tutorial for setting up the full server with flutter dart and mongodb with aws ?
I need it so much submitted by /u/UpsetMedium5485 link comments https://www.reddit.com/r/FlutterDev/comments/w0lgkb/is_there_any_tutorial_for_setting_up_the_full/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Usage of livestreaming flutter
I would like to know if anyone here tried to use live streaming on their mobile app whether at work or for fun. I know there are services like agora. Is there a way for me to build my own live streaming services from scratch with flutter or do I have to go native ? Is there any books that can... https://www.reddit.com/r/FlutterDev/comments/w1ijlh/usage_of_livestreaming_flutter/
Usage of livestreaming flutter
I would like to know if anyone here tried to use live streaming on their mobile app whether at work or for fun. I know there are services like agora. Is there a way for me to build my own live streaming services from scratch with flutter or do I have to go native ? Is there any books that can... https://www.reddit.com/r/FlutterDev/comments/w1ijlh/usage_of_livestreaming_flutter/
Reddit
From the FlutterDev community on Reddit: Usage of livestreaming flutter
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
5 Usefull tools What kind of security tools do you prefer?
I would like to share my tips for security tools that will help you better your threat management: Security Audit: MobSF - free automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework RASP: freeRASP - free app shielding and... https://www.reddit.com/r/FlutterDev/comments/w1xvw6/5_usefull_tools_what_kind_of_security_tools_do/
5 Usefull tools What kind of security tools do you prefer?
I would like to share my tips for security tools that will help you better your threat management: Security Audit: MobSF - free automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework RASP: freeRASP - free app shielding and... https://www.reddit.com/r/FlutterDev/comments/w1xvw6/5_usefull_tools_what_kind_of_security_tools_do/
Reddit
From the FlutterDev community on Reddit: [5 Usefull tools] What kind of security tools do you prefer?
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Flutter Payment (Cash | Digital) & Delivery Options (Take away | Delive...
submitted by /u/DBestech link comments https://www.reddit.com/r/FlutterDev/comments/w22fdl/flutter_payment_cash_digital_delivery_options/
Flutter Payment (Cash | Digital) & Delivery Options (Take away | Delive...
submitted by /u/DBestech link comments https://www.reddit.com/r/FlutterDev/comments/w22fdl/flutter_payment_cash_digital_delivery_options/
Reddit
From the FlutterDev community on Reddit: Flutter Payment (Cash | Digital) & Delivery Options (Take away | Delive...
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Sending & Receiving a String Datagram (Dart/Flutter UDP)
This function successfully sends an integer passed into n to a UDP server written in C. My question now is how can I modify this to do the same with strings and doubles? void sendintto(int n) async { final List<int> data = n; RawDatagramSocket rawDgramSocket = await... https://www.reddit.com/r/FlutterDev/comments/w29glq/sending_receiving_a_string_datagram_dartflutter/
Sending & Receiving a String Datagram (Dart/Flutter UDP)
This function successfully sends an integer passed into n to a UDP server written in C. My question now is how can I modify this to do the same with strings and doubles? void sendintto(int n) async { final List<int> data = n; RawDatagramSocket rawDgramSocket = await... https://www.reddit.com/r/FlutterDev/comments/w29glq/sending_receiving_a_string_datagram_dartflutter/
Reddit
From the FlutterDev community on Reddit: Sending & Receiving a String Datagram (Dart/Flutter UDP)
Posted by PornSoftware - 2 votes and 4 comments
New post on /r/flutterdev subreddit:
Set up a simple one-time password authentication flow using @AWSAmplify
submitted by /u/OfflineProgrammer link comments https://www.reddit.com/r/FlutterDev/comments/w2sux6/set_up_a_simple_onetime_password_authentication/
Set up a simple one-time password authentication flow using @AWSAmplify
submitted by /u/OfflineProgrammer link comments https://www.reddit.com/r/FlutterDev/comments/w2sux6/set_up_a_simple_onetime_password_authentication/
Reddit
From the FlutterDev community on Reddit: Set up a simple one-time password authentication flow using @AWSAmplify
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Introducing: DashBot the Chatbot! | Learning to Fly
submitted by /u/Pixelreddit link comments https://www.reddit.com/r/FlutterDev/comments/w2tgtu/introducing_dashbot_the_chatbot_learning_to_fly/
Introducing: DashBot the Chatbot! | Learning to Fly
submitted by /u/Pixelreddit link comments https://www.reddit.com/r/FlutterDev/comments/w2tgtu/introducing_dashbot_the_chatbot_learning_to_fly/
Reddit
From the FlutterDev community on Reddit: Introducing: DashBot the Chatbot! | Learning to Fly
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Dart Survey - what questions do you want to see?
The team at OnePub are looking to put together a 'state of the nation' survey for Dart that we plan on running and publishing on a regular basis. The aim is to conduct a fairly wide-ranging survey that looks at: What tooling is being used Demographics of the Dart community Remuneration What is... https://www.reddit.com/r/FlutterDev/comments/w3ch24/dart_survey_what_questions_do_you_want_to_see/
Dart Survey - what questions do you want to see?
The team at OnePub are looking to put together a 'state of the nation' survey for Dart that we plan on running and publishing on a regular basis. The aim is to conduct a fairly wide-ranging survey that looks at: What tooling is being used Demographics of the Dart community Remuneration What is... https://www.reddit.com/r/FlutterDev/comments/w3ch24/dart_survey_what_questions_do_you_want_to_see/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Flutter Packages That Developers Should Know
submitted by /u/geeksforgeeks link comments https://www.reddit.com/r/FlutterDev/comments/w3j28x/flutter_packages_that_developers_should_know/
Flutter Packages That Developers Should Know
submitted by /u/geeksforgeeks link comments https://www.reddit.com/r/FlutterDev/comments/w3j28x/flutter_packages_that_developers_should_know/
Reddit
From the FlutterDev community on Reddit: Flutter Packages That Developers Should Know
Posted by geeksforgeeks - 3 votes and 1 comment
New post on /r/flutterdev subreddit:
Taxi booking app like Uber?
How to build an app like uber, what are the main features which should be there in it, please drop the resource link also if available. submitted by /u/YoghurtLogical link comments https://www.reddit.com/r/FlutterDev/comments/w3ost0/taxi_booking_app_like_uber/
Taxi booking app like Uber?
How to build an app like uber, what are the main features which should be there in it, please drop the resource link also if available. submitted by /u/YoghurtLogical link comments https://www.reddit.com/r/FlutterDev/comments/w3ost0/taxi_booking_app_like_uber/
Reddit
From the FlutterDev community on Reddit: Taxi booking app like Uber?
Posted by YoghurtLogical - No votes and 3 comments
New post on /r/flutterdev subreddit:
Liquid Swipe - Flutter Package of The Week (Episode 1)
submitted by /u/backslashflutter link comments https://www.reddit.com/r/FlutterDev/comments/w47ens/liquid_swipe_flutter_package_of_the_week_episode_1/
Liquid Swipe - Flutter Package of The Week (Episode 1)
submitted by /u/backslashflutter link comments https://www.reddit.com/r/FlutterDev/comments/w47ens/liquid_swipe_flutter_package_of_the_week_episode_1/
Reddit
From the FlutterDev community on Reddit: Liquid Swipe - Flutter Package of The Week (Episode 1)
Posted by backslashflutter - 14 votes and 3 comments
New post on /r/flutterdev subreddit:
If people could tell me the guidelines, it would be really helpful.
I have learned Flutter from the course of Maximilian. I have learned the UI and Rest API. Which flow should I follow to start earning money using my skills? submitted by /u/alaDaDev29 link comments https://www.reddit.com/r/FlutterDev/comments/w4fuih/if_people_could_tell_me_the_guidelines_it_would/
If people could tell me the guidelines, it would be really helpful.
I have learned Flutter from the course of Maximilian. I have learned the UI and Rest API. Which flow should I follow to start earning money using my skills? submitted by /u/alaDaDev29 link comments https://www.reddit.com/r/FlutterDev/comments/w4fuih/if_people_could_tell_me_the_guidelines_it_would/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Definitive Flutter Guide To CustomPaint
submitted by /u/deven9852 link comments https://www.reddit.com/r/FlutterDev/comments/w4jc8j/definitive_flutter_guide_to_custompaint/
Definitive Flutter Guide To CustomPaint
submitted by /u/deven9852 link comments https://www.reddit.com/r/FlutterDev/comments/w4jc8j/definitive_flutter_guide_to_custompaint/
Reddit
From the FlutterDev community on Reddit: Definitive Flutter Guide To CustomPaint
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
So cofused about flutter backend
new to flutter, junior java developer. Why is it that everything related to database/servers when it comes to flutter it's Firebase? Firebase. Are there any content with like a mangoDB..? submitted by /u/Potential-Feeling885 link comments https://www.reddit.com/r/FlutterDev/comments/w510dt/so_cofused_about_flutter_backend/
So cofused about flutter backend
new to flutter, junior java developer. Why is it that everything related to database/servers when it comes to flutter it's Firebase? Firebase. Are there any content with like a mangoDB..? submitted by /u/Potential-Feeling885 link comments https://www.reddit.com/r/FlutterDev/comments/w510dt/so_cofused_about_flutter_backend/
Reddit
From the FlutterDev community on Reddit
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
I made a visualizer for the "sprung" package
Hi everyone. There is a package called sprung to create animation curves based on spring physics, which feel more natural compared to standard curves like ease, easeInOut, etc. There are four properties whose values can be adjusted to change the feel of the animation: mass, stiffness, damping... https://www.reddit.com/r/FlutterDev/comments/w58959/i_made_a_visualizer_for_the_sprung_package/
I made a visualizer for the "sprung" package
Hi everyone. There is a package called sprung to create animation curves based on spring physics, which feel more natural compared to standard curves like ease, easeInOut, etc. There are four properties whose values can be adjusted to change the feel of the animation: mass, stiffness, damping... https://www.reddit.com/r/FlutterDev/comments/w58959/i_made_a_visualizer_for_the_sprung_package/
Reddit
From the FlutterDev community on Reddit: I made a visualizer for the "sprung" package
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Creating a Flutter project with Authentication and Realtime db by masoncli
In this video you will learn how you can start a feature rich project in a short amount of time with amplifystarter project and Flutter by using AWS Amplify and bloc. Let me know what you think about it! https://www.youtube.com/watch?v=UfeahkVLJlE submitted by /u/msalihg ... https://www.reddit.com/r/FlutterDev/comments/w5detm/creating_a_flutter_project_with_authentication/
Creating a Flutter project with Authentication and Realtime db by masoncli
In this video you will learn how you can start a feature rich project in a short amount of time with amplifystarter project and Flutter by using AWS Amplify and bloc. Let me know what you think about it! https://www.youtube.com/watch?v=UfeahkVLJlE submitted by /u/msalihg ... https://www.reddit.com/r/FlutterDev/comments/w5detm/creating_a_flutter_project_with_authentication/
YouTube
Creating a Flutter project with Authentication and Realtime db by mason_cli | #awsamplify #flutter
A lot of people having hard time to start their projects and they do not know what library to pick or which product to use.
With this video you will learn how you can start a feature rich project in a short amount of time with amplify_starter project and…
With this video you will learn how you can start a feature rich project in a short amount of time with amplify_starter project and…
New post on /r/flutterdev subreddit:
Creating a Flutter project with Authentication and Realtime db by mason_cli
submitted by /u/msalihg [link] [comments] https://www.reddit.com/r/FlutterDev/comments/w5wofr/creating_a_flutter_project_with_authentication/
Creating a Flutter project with Authentication and Realtime db by mason_cli
submitted by /u/msalihg [link] [comments] https://www.reddit.com/r/FlutterDev/comments/w5wofr/creating_a_flutter_project_with_authentication/
Reddit
From the FlutterDev community on Reddit: Creating a Flutter project with Authentication and Realtime db by mason_cli
Explore this post and more from the FlutterDev community
New post on /r/flutterdev subreddit:
Blup new update is out! with Figma import, Flutter Custom Code & 3rd party packages, & a lot more.
Hi Flutter Community, I'm Sahaj co-founder at Blup. Blup is a development tool that helps you to create production-ready mobile apps with low code, visual-scripting & free-flow UI designer. PS: Blup is built completely in Flutter. We have brought in a new update! It comes with Flutter Custom ... https://www.reddit.com/r/FlutterDev/comments/w62ett/blup_new_update_is_out_with_figma_import_flutter/
Blup new update is out! with Figma import, Flutter Custom Code & 3rd party packages, & a lot more.
Hi Flutter Community, I'm Sahaj co-founder at Blup. Blup is a development tool that helps you to create production-ready mobile apps with low code, visual-scripting & free-flow UI designer. PS: Blup is built completely in Flutter. We have brought in a new update! It comes with Flutter Custom ... https://www.reddit.com/r/FlutterDev/comments/w62ett/blup_new_update_is_out_with_figma_import_flutter/
Reddit
From the FlutterDev community on Reddit: Blup new update is out! with Figma import, Flutter Custom Code & 3rd party packages, &…
Explore this post and more from the FlutterDev community