New post on /r/flutterdev subreddit:
Add NavigatorState extensions to strongly type your navigation with arguments, return values and named routes
https://youtu.be/wv6jHvpMgag
January 19, 2022 at 08:12PM by flutter--help
https://ift.tt/3qGRb1C
Add NavigatorState extensions to strongly type your navigation with arguments, return values and named routes
https://youtu.be/wv6jHvpMgag
January 19, 2022 at 08:12PM by flutter--help
https://ift.tt/3qGRb1C
YouTube
Flutter Navigation: Push Routes, Send Arguments, Return Values
Content:
00:00 - Intro
00:45 - Route Names
01:00 - onGenerateRoute
03:51 - onUnknownRoute
04:19 - NavigatorState Extensions
08:22 - Example Usage
00:00 - Intro
00:45 - Route Names
01:00 - onGenerateRoute
03:51 - onUnknownRoute
04:19 - NavigatorState Extensions
08:22 - Example Usage
New post on /r/flutterdev subreddit:
Thoughts on the `slide_puzzle` architecture with bloc
The latest flutter challenge has an bloc-based architecture, it's built by the creator of bloc and has a pretty nice implementation of it imo. https://github.com/VGVentures/slide_puzzle/tree/release/lib/puzzleGone is the state-machine inside the view and the excessive boilerplate of declaring individual state classes to represent view states. Instead the bloc holds a chunk of complex state for the view. The view can just make some intelligent decisions, eg: ``` final puzzle = context.select((PuzzleBloc bloc) => bloc.state.puzzle); final size = puzzle.getDimension(); if (size == 0) return const CircularProgressIndicator();return BlocListener<PuzzleBloc, PuzzleState>( ``` To me this is a more pragmatic implementation of bloc as the state-machine-switch approach never justified it's excessive syntax outside of specific cases like a multi-step form view.Interestingly they still used event classes rather than moving to cubit, and just calling bloc methods directly. I'm still not sold on the value of the event abstraction layer. Seems like it provides de-coupling where none is really needed, which would primarily have the effect of making debugging harder (generally simpler to debug a direct method call, vs a routed event).Thoughts?
January 19, 2022 at 07:44PM by esDotDev
https://ift.tt/3FK0emX
Thoughts on the `slide_puzzle` architecture with bloc
The latest flutter challenge has an bloc-based architecture, it's built by the creator of bloc and has a pretty nice implementation of it imo. https://github.com/VGVentures/slide_puzzle/tree/release/lib/puzzleGone is the state-machine inside the view and the excessive boilerplate of declaring individual state classes to represent view states. Instead the bloc holds a chunk of complex state for the view. The view can just make some intelligent decisions, eg: ``` final puzzle = context.select((PuzzleBloc bloc) => bloc.state.puzzle); final size = puzzle.getDimension(); if (size == 0) return const CircularProgressIndicator();return BlocListener<PuzzleBloc, PuzzleState>( ``` To me this is a more pragmatic implementation of bloc as the state-machine-switch approach never justified it's excessive syntax outside of specific cases like a multi-step form view.Interestingly they still used event classes rather than moving to cubit, and just calling bloc methods directly. I'm still not sold on the value of the event abstraction layer. Seems like it provides de-coupling where none is really needed, which would primarily have the effect of making debugging harder (generally simpler to debug a direct method call, vs a routed event).Thoughts?
January 19, 2022 at 07:44PM by esDotDev
https://ift.tt/3FK0emX
GitHub
slide_puzzle/lib/puzzle at release · VGVentures/slide_puzzle
Contribute to VGVentures/slide_puzzle development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
PayPal Integration in Flutter
I am trying to add a feature where users would send money to each other using PayPal in Flutter, and I specifically want to be able to send payment requests to other users. I have checked out (https://pub.dev/packages/flutter_braintree) but this package seems like it is mainly useful for merchant use cases, whereas I just want to create a "plug-in" that would allow users to send money to each other via Flutter itself.I have also checked out This Medium Blog Post on PayPal gateway integration but it is the same merchant use case that I mentioned before.Curious to see if others have attempted this and what their experience has been.
January 19, 2022 at 09:28PM by thewindblowshere
https://ift.tt/3FD1kkc
PayPal Integration in Flutter
I am trying to add a feature where users would send money to each other using PayPal in Flutter, and I specifically want to be able to send payment requests to other users. I have checked out (https://pub.dev/packages/flutter_braintree) but this package seems like it is mainly useful for merchant use cases, whereas I just want to create a "plug-in" that would allow users to send money to each other via Flutter itself.I have also checked out This Medium Blog Post on PayPal gateway integration but it is the same merchant use case that I mentioned before.Curious to see if others have attempted this and what their experience has been.
January 19, 2022 at 09:28PM by thewindblowshere
https://ift.tt/3FD1kkc
Dart packages
flutter_braintree | Flutter package
Flutter plugin that wraps the native Braintree SDKs. Enables payments with credit cards, PayPal, Google Pay and more.
New post on /r/flutterdev subreddit:
[Project] Building a Zoom clone in Flutter
This January, I tried to build a video conferencing app like Zoom with features like joining a room, leaving a room, screen share, hand raise, mute/unmute, camera off/on and chat.I have broken down the entire development process in steps here: https://www.100ms.live/blog/zoom-clone-in-flutterConnect with me on twitter: https://twitter.com/GovindMh14
January 20, 2022 at 07:03AM by govindmh14
https://ift.tt/33ADSqT
[Project] Building a Zoom clone in Flutter
This January, I tried to build a video conferencing app like Zoom with features like joining a room, leaving a room, screen share, hand raise, mute/unmute, camera off/on and chat.I have broken down the entire development process in steps here: https://www.100ms.live/blog/zoom-clone-in-flutterConnect with me on twitter: https://twitter.com/GovindMh14
January 20, 2022 at 07:03AM by govindmh14
https://ift.tt/33ADSqT
100ms.live
Building a Zoom clone in Flutter
Today, Zoom is the most popular video and audio conferencing app. In this blog, learn how to build a Zoom clone using Flutter and 100ms SDK.
New post on /r/flutterdev subreddit:
water_drop_nav_bar now updated to 2.1.0
fixed some issues and improved documentation.
https://pub.dev/packages/water_drop_nav_bar
January 20, 2022 at 08:13AM by pavel_birdy
https://ift.tt/3tHf7E1
water_drop_nav_bar now updated to 2.1.0
fixed some issues and improved documentation.
https://pub.dev/packages/water_drop_nav_bar
January 20, 2022 at 08:13AM by pavel_birdy
https://ift.tt/3tHf7E1
Dart packages
water_drop_nav_bar | Flutter package
Bottom navigation bar, it has unique water drop effect. When water droplet falls it marks seleted item.
New post on /r/flutterdev subreddit:
Can Flutter do everything a native Android app can?
Or are there some API calls only available via native Android development?
January 20, 2022 at 07:44AM by GassyGhoul88
https://ift.tt/33TsDtu
Can Flutter do everything a native Android app can?
Or are there some API calls only available via native Android development?
January 20, 2022 at 07:44AM by GassyGhoul88
https://ift.tt/33TsDtu
reddit
Can Flutter do everything a native Android app can?
Or are there some API calls only available via native Android development?
New post on /r/flutterdev subreddit:
What's your workflow M1 Mac users?
Do you use Android Studio or VSCode or something else?What simulators you guys use?Rn I am using AS. But running an idle Pixel 3A sim on my Mac takes staggering 4gb ram unlike iOS simulator where it barely takes 100mbs when idling.
January 20, 2022 at 10:30AM by MrVegetableMan
https://ift.tt/3GP5Hdw
What's your workflow M1 Mac users?
Do you use Android Studio or VSCode or something else?What simulators you guys use?Rn I am using AS. But running an idle Pixel 3A sim on my Mac takes staggering 4gb ram unlike iOS simulator where it barely takes 100mbs when idling.
January 20, 2022 at 10:30AM by MrVegetableMan
https://ift.tt/3GP5Hdw
reddit
What's your workflow M1 Mac users?
Do you use Android Studio or VSCode or something else? What simulators you guys use? Rn I am using AS. But running an idle Pixel 3A...
New post on /r/flutterdev subreddit:
best flutter course , u had
i'm trying to learn flutter any one got course used to be good at it ?
January 20, 2022 at 10:17AM by samelden
https://ift.tt/3fI56OQ
best flutter course , u had
i'm trying to learn flutter any one got course used to be good at it ?
January 20, 2022 at 10:17AM by samelden
https://ift.tt/3fI56OQ
reddit
best flutter course , u had
i'm trying to learn flutter any one got course used to be good at it ?
New post on /r/flutterdev subreddit:
Nested JSON & Maps | Build Models | Nested Models | Parsing Json | Flutt...
https://youtube.com/watch?v=yrsvM40NzjM&feature=share
January 20, 2022 at 12:54PM by DBestech
https://ift.tt/3KsCXJt
Nested JSON & Maps | Build Models | Nested Models | Parsing Json | Flutt...
https://youtube.com/watch?v=yrsvM40NzjM&feature=share
January 20, 2022 at 12:54PM by DBestech
https://ift.tt/3KsCXJt
YouTube
Nested JSON & Maps | Build Models | Nested Models | Parsing Json | Flutter Dart
We will learn about nested json and nested maps in flutter and learn how to build nested models.
See tut here
https://www.dbestech.com/tutorials/flutter-food-delivery-e-commerce-app-documentation
Learn about Maps here
https://www.dbestech.com/tutorials/understanding…
See tut here
https://www.dbestech.com/tutorials/flutter-food-delivery-e-commerce-app-documentation
Learn about Maps here
https://www.dbestech.com/tutorials/understanding…
New post on /r/flutterdev subreddit:
Flutter backend
Sorry a very very beginner question. At the moment I only know Python and Matlab. This year I would like to learn django, sql, dart and flutter. I have a precise idea of the app that I would like to build and the first version would be without a central server. My plan in the future is to offer a pro subscription for server based operations. But for an app without a server, so with a local database will Be better to use still django or another thing or for local usage is it ok to only use flutter + sql? Sorry for the dumb question, I am learning also to ask the right questions.
January 20, 2022 at 01:16PM by thecoscino
https://ift.tt/3qMwuBi
Flutter backend
Sorry a very very beginner question. At the moment I only know Python and Matlab. This year I would like to learn django, sql, dart and flutter. I have a precise idea of the app that I would like to build and the first version would be without a central server. My plan in the future is to offer a pro subscription for server based operations. But for an app without a server, so with a local database will Be better to use still django or another thing or for local usage is it ok to only use flutter + sql? Sorry for the dumb question, I am learning also to ask the right questions.
January 20, 2022 at 01:16PM by thecoscino
https://ift.tt/3qMwuBi
Reddit
r/FlutterDev on Reddit: Flutter backend
Posted by u/thecoscino - 20 votes and 21 comments
New post on /r/flutterdev subreddit:
Flutter Google One Tap Sign In, String Generator & Co. - 01 - PUB.DEV RE...
https://youtube.com/watch?v=OptKRMXcGBE&feature=share
January 20, 2022 at 03:11PM by syntacops
https://ift.tt/3qIb2h2
Flutter Google One Tap Sign In, String Generator & Co. - 01 - PUB.DEV RE...
https://youtube.com/watch?v=OptKRMXcGBE&feature=share
January 20, 2022 at 03:11PM by syntacops
https://ift.tt/3qIb2h2
YouTube
Flutter Google One Tap Sign In, String Generator & Co. - 01 - PUB.DEV RELEASES 2022
📫 MAIL NEWSLETTER: https://syntacops.beehiiv.com/subscribe
🔙 PREVIOUS EPISODE: https://www.youtube.com/watch?v=sdo5GW_PkwM
Week 01 brings a Google One Tap Sign In Widget for Flutter and many more packages.
#flutter #google #signin
📦 PACKAGES:
https:/…
🔙 PREVIOUS EPISODE: https://www.youtube.com/watch?v=sdo5GW_PkwM
Week 01 brings a Google One Tap Sign In Widget for Flutter and many more packages.
#flutter #google #signin
📦 PACKAGES:
https:/…
New tweet from FlutterDev:
🧩 What package does the sample Flutter slide puzzle use for state management? #FlutterPuzzleHack— Flutter (@FlutterDev) Jan 20, 2022
January 20, 2022 at 06:00PM
https://twitter.com/FlutterDev/status/1484209307730149376
🧩 What package does the sample Flutter slide puzzle use for state management? #FlutterPuzzleHack— Flutter (@FlutterDev) Jan 20, 2022
January 20, 2022 at 06:00PM
https://twitter.com/FlutterDev/status/1484209307730149376
Twitter
Flutter
🧩 What package does the sample Flutter slide puzzle use for state management? #FlutterPuzzleHack
New post on /r/flutterdev subreddit:
Firebase Authentication in Flutter (The Boring Flutter Development Show,...
https://youtube.com/watch?v=Gz0x77Hd1GE&feature=share
January 20, 2022 at 07:02PM by Pixelreddit
https://ift.tt/3GUa6Mk
Firebase Authentication in Flutter (The Boring Flutter Development Show,...
https://youtube.com/watch?v=Gz0x77Hd1GE&feature=share
January 20, 2022 at 07:02PM by Pixelreddit
https://ift.tt/3GUa6Mk
YouTube
Firebase Authentication in Flutter (The Boring Flutter Development Show, Ep. 55)
In today’s episode of The Boring Flutter Development Show, Fitz is joined by Firebase Software Engineer Frank van Puffelen. Fitz and Puf will take a look at handling Firebase authentication errors, async/await, and much more!
Chapters:
0:00 - Enter Puf!…
Chapters:
0:00 - Enter Puf!…
New post on /r/flutterdev subreddit:
What Do You Love About Flutter?
I’ve been tasked with learning Flutter at work, but am struggling to get motivated. I thought hearing from people passionate about it, or even who just enjoy working with it, would give me some inspiration.
January 20, 2022 at 06:18PM by facadeoftears
https://ift.tt/3AfJWAW
What Do You Love About Flutter?
I’ve been tasked with learning Flutter at work, but am struggling to get motivated. I thought hearing from people passionate about it, or even who just enjoy working with it, would give me some inspiration.
January 20, 2022 at 06:18PM by facadeoftears
https://ift.tt/3AfJWAW
reddit
What Do You Love About Flutter?
I’ve been tasked with learning Flutter at work, but am struggling to get motivated. I thought hearing from people passionate about it, or even...
New post on /r/flutterdev subreddit:
Android studio vs VS?
Which do you use for flutter and why? If you code on an M1 mac , which do you use?
January 21, 2022 at 02:58AM by Madridi77
https://ift.tt/3KuAHBH
Android studio vs VS?
Which do you use for flutter and why? If you code on an M1 mac , which do you use?
January 21, 2022 at 02:58AM by Madridi77
https://ift.tt/3KuAHBH
reddit
Android studio vs VS?
Which do you use for flutter and why? If you code on an M1 mac , which do you use?
New post on /r/flutterdev subreddit:
What are some widgets you like most in flutter?
Widgets that YOU find useful.
January 21, 2022 at 05:42AM by The-Hated_One
https://ift.tt/3rzFqJH
What are some widgets you like most in flutter?
Widgets that YOU find useful.
January 21, 2022 at 05:42AM by The-Hated_One
https://ift.tt/3rzFqJH
reddit
What are some widgets you like most in flutter?
Widgets that YOU find useful.
New post on /r/flutterdev subreddit:
Xcode and AndroidManifest.xml modification is getting out of hand
I love flutter and all and normally, I wouldn't mind to add one or two copy paste code to make sure my app working on android and ios.However, it start getting out of hand once the app grow and I need to use multiple plugin like notification, sign in, download, audio etc that each one of them require to modify native code, podfile or settings. Especially removing a library that I added 6 months ago that probably leave some settings in AndroidManifest.xml or xcode that I'm not dare to remove because other plugin might require the same settings. My current solution is once in a while I recreate ios and android folder then manually go through all of my pub library to add the modification as they require.is there a better way?
January 21, 2022 at 05:23AM by chaucao-cmg
https://ift.tt/3AieMZR
Xcode and AndroidManifest.xml modification is getting out of hand
I love flutter and all and normally, I wouldn't mind to add one or two copy paste code to make sure my app working on android and ios.However, it start getting out of hand once the app grow and I need to use multiple plugin like notification, sign in, download, audio etc that each one of them require to modify native code, podfile or settings. Especially removing a library that I added 6 months ago that probably leave some settings in AndroidManifest.xml or xcode that I'm not dare to remove because other plugin might require the same settings. My current solution is once in a while I recreate ios and android folder then manually go through all of my pub library to add the modification as they require.is there a better way?
January 21, 2022 at 05:23AM by chaucao-cmg
https://ift.tt/3AieMZR
reddit
Xcode and AndroidManifest.xml modification is getting out of hand
I love flutter and all and normally, I wouldn't mind to add one or two copy paste code to make sure my app working on android and ios. ...
New post on /r/flutterdev subreddit:
Grocery App - Flutter & NodeJS - Category API - EP01
https://youtu.be/dEa9njREtPQ
January 21, 2022 at 06:52AM by Aromatic-End-3667
https://ift.tt/35c8AXR
Grocery App - Flutter & NodeJS - Category API - EP01
https://youtu.be/dEa9njREtPQ
January 21, 2022 at 06:52AM by Aromatic-End-3667
https://ift.tt/35c8AXR
YouTube
Grocery App - Flutter & NodeJS - Category API - EP01
In this video we will create Category API using NodeJS API for our Grocery App Flutter & NodeJS E-Commerce Series.
⏱TIMESTAMPS
00:00 - Introduction
01:00 - NodeJS API Setup
07:22 - Category Model
08:49 - Categories Service
18:40 - Categories Middleware's…
⏱TIMESTAMPS
00:00 - Introduction
01:00 - NodeJS API Setup
07:22 - Category Model
08:49 - Categories Service
18:40 - Categories Middleware's…
New post on /r/flutterdev subreddit:
Localize your Flutter packages
https://ift.tt/3rCpsOV
January 21, 2022 at 11:38AM by dtengeri
https://ift.tt/32kEEYl
Localize your Flutter packages
https://ift.tt/3rCpsOV
January 21, 2022 at 11:38AM by dtengeri
https://ift.tt/32kEEYl
dtengeri's blog
Localize your Flutter packages
With a summary of localization in Flutter
New post on /r/flutterdev subreddit:
Flutter & Socket Tutorial For Beginners: Build Typeracer Clone
https://youtu.be/DabC5B508tQ
January 21, 2022 at 03:03PM by OSetups
https://ift.tt/3fJpIGa
Flutter & Socket Tutorial For Beginners: Build Typeracer Clone
https://youtu.be/DabC5B508tQ
January 21, 2022 at 03:03PM by OSetups
https://ift.tt/3fJpIGa
YouTube
Flutter + Node + SocketIO + MongoDB + Provider State Management Course - Build a Multiplayer Game
Build Responsive Typeracer Clone using Flutter & Node.js and learn about Socket.io, Express, MongoDB, Singleton Pattern Implementation along with Provider to manage the state of the build!
Source Code: https://github.com/RivaanRanawat/typeracer-flutter-clone…
Source Code: https://github.com/RivaanRanawat/typeracer-flutter-clone…
New post on /r/flutterdev subreddit:
App Feedback Thread - January 21, 2022
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
January 21, 2022 at 03:00PM by AutoModerator
https://ift.tt/3nNLzB0
App Feedback Thread - January 21, 2022
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
January 21, 2022 at 03:00PM by AutoModerator
https://ift.tt/3nNLzB0
reddit
App Feedback Thread - January 21, 2022
This thread is for getting feedback on your own apps. ## Developers: * must **provide feedback** for others * must include **Play Store**, **App...