New post on /r/flutterdev subreddit:
Flutter Tutorial - Google SignIn With Firebase (Johannes Milke)
https://www.youtube.com/watch?v=1k-gITZA9CI
May 17, 2021 at 09:24PM by JohannesMilke
https://ift.tt/3hwVnNi
Flutter Tutorial - Google SignIn With Firebase (Johannes Milke)
https://www.youtube.com/watch?v=1k-gITZA9CI
May 17, 2021 at 09:24PM by JohannesMilke
https://ift.tt/3hwVnNi
YouTube
Flutter Tutorial - Google SignIn With Firebase Auth - Android, iOS, Flutter Web
Integrate Flutter Google SignIn With Firebase to allow user authentication in your Flutter app.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
Need an App or Website?
👉Book a call now: https://bit.ly/42OGCga…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
Need an App or Website?
👉Book a call now: https://bit.ly/42OGCga…
New post on /r/flutterdev subreddit:
Paddinger, a package to deal with Padding widgets
Hello everyone,few days ago I released Paddinger, my first Flutter package to help you deal with Padding widgets.Paddinger generates Padding widgets from the constants you annotate with
May 17, 2021 at 11:16PM by ema987
https://ift.tt/3eRhrk6
Paddinger, a package to deal with Padding widgets
Hello everyone,few days ago I released Paddinger, my first Flutter package to help you deal with Padding widgets.Paddinger generates Padding widgets from the constants you annotate with
@paddinger
Starting from:@paddinger const double PADDING_NORMAL = 8;
You get these widgets:NormalAllPadding NormalLeftPadding NormalTopPadding NormalRightPadding NormalBottomPadding NormalHorizontalPadding NormalVerticalPadding NormalLeftTopPadding NormalLeftBottomPadding NormalRightTopPadding NormalRightBottomPadding
So instead of writingPadding(
padding: const EdgeInsets.all(PADDING_NORMAL),
child: Text(
'MyText',
),
)
you can use the newly created widgets and just writeNormalAllPadding(
child: Text(
'MyText',
),
)
I hope someone finds it useful and would like to see your feedbacks!You can find the package on pub.dev and its source code on GitHubHappy Fluttering!May 17, 2021 at 11:16PM by ema987
https://ift.tt/3eRhrk6
Dart packages
paddinger | Dart Package
Code generation for Flutter Padding widgets based on your constants.
New post on /r/flutterdev subreddit:
Did you know?!!! It's so nice to be able to export Adobe XD project into Flutter!! 🎉
https://www.youtube.com/watch?v=duOPfctEb_I
May 17, 2021 at 10:25PM by fluttermapp
https://ift.tt/3hDY8N3
Did you know?!!! It's so nice to be able to export Adobe XD project into Flutter!! 🎉
https://www.youtube.com/watch?v=duOPfctEb_I
May 17, 2021 at 10:25PM by fluttermapp
https://ift.tt/3hDY8N3
YouTube
Adobe XD to Flutter Tutorial
Adobe XD now support Flutter! this is the fastest and easiest Adobe XD to Flutter Tutorial on Youtube in order to export any Adobe XD Project into Flutter 2.0 with this simple Adobe XD Dependency. It is a simple plugin that allow you to get the actual Adobe…
New post on /r/flutterdev subreddit:
An In-Depth Dive Into Streaming Data Across Platform Channels on Flutter
https://ift.tt/3tO6AeY
May 17, 2021 at 10:07PM by Elixane
https://ift.tt/3uRvVG6
An In-Depth Dive Into Streaming Data Across Platform Channels on Flutter
https://ift.tt/3tO6AeY
May 17, 2021 at 10:07PM by Elixane
https://ift.tt/3uRvVG6
raywenderlich.com
An In-Depth Dive Into Streaming Data Across Platform Channels on Flutter
In this tutorial, you’ll learn how to use Platform Channels to stream data into your Flutter app.
New post on /r/flutterdev subreddit:
Flutter Tutorial - Sliding Up Panel & Draggable Sliding Sheet [2021] (Johannes Milke)
https://www.youtube.com/watch?v=s9XHOQeIeZg
May 16, 2021 at 09:01PM by JohannesMilke
https://ift.tt/3otGPzp
Flutter Tutorial - Sliding Up Panel & Draggable Sliding Sheet [2021] (Johannes Milke)
https://www.youtube.com/watch?v=s9XHOQeIeZg
May 16, 2021 at 09:01PM by JohannesMilke
https://ift.tt/3otGPzp
YouTube
Flutter Tutorial - Sliding Up Panel & Draggable Sliding Sheet
Create a Flutter Sliding Up Panel and a Flutter Draggable Sliding Sheet that is sliding up and down from the bottom of the screen.
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:
NoSuchMethodError was thrown building FutureBuilder
I want to get a JSON object from an api and format the information to screen. So far I've done the below as a practice: class Home extends StatelessWidget { final String accountNum; Home(this.accountNum); final String apiUrl = "https://ift.tt/2YQsVKo"; Future
May 18, 2021 at 12:01AM by Kristin
https://ift.tt/3tT3V3t
NoSuchMethodError was thrown building FutureBuilder
I want to get a JSON object from an api and format the information to screen. So far I've done the below as a practice: class Home extends StatelessWidget { final String accountNum; Home(this.accountNum); final String apiUrl = "https://ift.tt/2YQsVKo"; Future
May 18, 2021 at 12:01AM by Kristin
https://ift.tt/3tT3V3t
New post on /r/flutterdev subreddit:
Is fully decoupled onion architecture worth it in flutter?
I see everyone putting fully decoupled onion architecture in a pedestal as if it's the perfect architecture. But when I ask people they use it, most of them say they doesn't.Here's the architecture's diagram:
https://blog.cleancoder.com/uncle-bob/images/2012-08-13-the-clean-architecture/CleanArchitecture.jpgHere's a tutorial of how to do it:https://resocoder.com/2019/08/27/flutter-tdd-clean-architecture-course-1-explanation-project-structure/My first project, I did using all these rules and it turned into a nightmare. Onion Architecture may be good for switching libraries and dependencies, but it's a complete nightmare for modifying stuff.I don't disagree with basic stuff, like creating a readable code, use immutable states, good error handling, testable code, use custom objects and create basic layer division. But when you decouple everything, modifying stuff becomes really hard.
If you want to modify your "user" object, in an average architecture you would just need to modify the user itself and make some changes on your database to fit the change. After that, you can run some tests to see if everything is ok. In onion architecture, you will need to change the user, the database, adapters, contracts and more. If you change just a parameter type of the "user" object, you will need to modify everything I already said, plus all use_cases that use the parameter, plus all the contracts between layers and maybe more.Sometimes I think it also makes the code less readable because you need to jump between too many files.I would like to know the experience of you guys regarding this topic.
Hardcore layer division really worth it in the long run making the code more maintainable?
Did I do something wrong and that's why it became a nightmare?
Or basic good practices are enough?
May 17, 2021 at 11:27PM by werexzenok
https://ift.tt/3eSKXG8
Is fully decoupled onion architecture worth it in flutter?
I see everyone putting fully decoupled onion architecture in a pedestal as if it's the perfect architecture. But when I ask people they use it, most of them say they doesn't.Here's the architecture's diagram:
https://blog.cleancoder.com/uncle-bob/images/2012-08-13-the-clean-architecture/CleanArchitecture.jpgHere's a tutorial of how to do it:https://resocoder.com/2019/08/27/flutter-tdd-clean-architecture-course-1-explanation-project-structure/My first project, I did using all these rules and it turned into a nightmare. Onion Architecture may be good for switching libraries and dependencies, but it's a complete nightmare for modifying stuff.I don't disagree with basic stuff, like creating a readable code, use immutable states, good error handling, testable code, use custom objects and create basic layer division. But when you decouple everything, modifying stuff becomes really hard.
If you want to modify your "user" object, in an average architecture you would just need to modify the user itself and make some changes on your database to fit the change. After that, you can run some tests to see if everything is ok. In onion architecture, you will need to change the user, the database, adapters, contracts and more. If you change just a parameter type of the "user" object, you will need to modify everything I already said, plus all use_cases that use the parameter, plus all the contracts between layers and maybe more.Sometimes I think it also makes the code less readable because you need to jump between too many files.I would like to know the experience of you guys regarding this topic.
Hardcore layer division really worth it in the long run making the code more maintainable?
Did I do something wrong and that's why it became a nightmare?
Or basic good practices are enough?
May 17, 2021 at 11:27PM by werexzenok
https://ift.tt/3eSKXG8
New post on /r/flutterdev subreddit:
How It’s Made: I/O Photo Booth
https://ift.tt/3hAmJSK
May 18, 2021 at 04:54AM by felangel1
https://ift.tt/2RZZabo
How It’s Made: I/O Photo Booth
https://ift.tt/3hAmJSK
May 18, 2021 at 04:54AM by felangel1
https://ift.tt/2RZZabo
Medium
How It’s Made: I/O Photo Booth
A closer look at building a web app with Flutter and Firebase
New post on /r/flutterdev subreddit:
Easily Change the Package Name of the Flatter App.
https://ift.tt/3yjecJR
May 18, 2021 at 07:20AM by Complex-Bee5044
https://ift.tt/3eTtwoH
Easily Change the Package Name of the Flatter App.
https://ift.tt/3yjecJR
May 18, 2021 at 07:20AM by Complex-Bee5044
https://ift.tt/3eTtwoH
Medium
Easily Change the Package Name of the Flatter App.
There are several ways to change the package name of an existing or new flutter app.
New post on /r/flutterdev subreddit:
Flutter Chat App - WhatsApp Clone Login Page with Alert Handling (Pt-2) || WhatsApp Clone #28
https://youtu.be/6_3l0WHP7dY
May 18, 2021 at 10:58AM by devstack06
https://ift.tt/3w8r3N0
Flutter Chat App - WhatsApp Clone Login Page with Alert Handling (Pt-2) || WhatsApp Clone #28
https://youtu.be/6_3l0WHP7dY
May 18, 2021 at 10:58AM by devstack06
https://ift.tt/3w8r3N0
YouTube
Flutter Chat App - WhatsApp Clone Login Page with Alert Handling (Pt-2) || WhatsApp Clone #28
In this video we are going to complete the login page creation of whatsapp clone. Also we are going to handle the alerts of all type of form validation.
#Flutter #WhatsappClone #LoginPage
🤩 Last Video: https://youtu.be/48hm3n7GyZY
🤩 GitHub Repo (Do give…
#Flutter #WhatsappClone #LoginPage
🤩 Last Video: https://youtu.be/48hm3n7GyZY
🤩 GitHub Repo (Do give…
New post on /r/flutterdev subreddit:
Desktop GUI Implementation using Flutter WEB (Part 1: Introduction)
https://ift.tt/3hzHpdG
May 18, 2021 at 10:11AM by Elixane
https://ift.tt/3eTLKq7
Desktop GUI Implementation using Flutter WEB (Part 1: Introduction)
https://ift.tt/3hzHpdG
May 18, 2021 at 10:11AM by Elixane
https://ift.tt/3eTLKq7
Medium
Desktop GUI Implementation using Flutter WEB (Part 1: Introduction)
FlutterGUI, a desktop Graphical User Interface implemented using Flutter WEB.
New post on /r/flutterdev subreddit:
Flutter + Firebase: How we built CrochetApp
Hi everyone :) This is my first time posting on reddit and my first time posting an actual tech post on the internet :D Firebase + Flutter is becoming very popular and I decided to share our story, how we too created an app with these 2 tools :)https://medium.com/@darja.tretjakova/flutter-firebase-how-we-built-crochetapp-7aac69f14c17
May 18, 2021 at 11:21AM by dariatr
https://ift.tt/346zJaZ
Flutter + Firebase: How we built CrochetApp
Hi everyone :) This is my first time posting on reddit and my first time posting an actual tech post on the internet :D Firebase + Flutter is becoming very popular and I decided to share our story, how we too created an app with these 2 tools :)https://medium.com/@darja.tretjakova/flutter-firebase-how-we-built-crochetapp-7aac69f14c17
May 18, 2021 at 11:21AM by dariatr
https://ift.tt/346zJaZ
Medium
Flutter + Firebase: How we built CrochetApp
Who am I? That’s a secret I’ll never tell. Ok, ok, sorry for the lame Gossip Girl reference, just couldn’t help myself. My name is Daria…
New post on Flutter Dev Google group:
Flutter voice recognition continuous
Hey guys, Could you help me am trying to develop flutter app for Android and IOS that is able to protect women from danger with help of voice recognition. This is how it works, first user must create account and fill his information with a wake word and samples of his voice to train it. What i
May 18, 2021 at 12:50PM by Fadi Chaalab
https://ift.tt/3uZkufw
Flutter voice recognition continuous
Hey guys, Could you help me am trying to develop flutter app for Android and IOS that is able to protect women from danger with help of voice recognition. This is how it works, first user must create account and fill his information with a wake word and samples of his voice to train it. What i
May 18, 2021 at 12:50PM by Fadi Chaalab
https://ift.tt/3uZkufw
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:
Hey guys uploaded the 2nd part of the "Domino's Clone app in Flutter" on my youtube channel. Have a look and let me know your feedback on the comment section. Source code in the description of the video. Thank you.
https://youtu.be/cdyR5HxfHds
May 18, 2021 at 02:59PM by praveenthedesigner
https://ift.tt/3fvlX6M
Hey guys uploaded the 2nd part of the "Domino's Clone app in Flutter" on my youtube channel. Have a look and let me know your feedback on the comment section. Source code in the description of the video. Thank you.
https://youtu.be/cdyR5HxfHds
May 18, 2021 at 02:59PM by praveenthedesigner
https://ift.tt/3fvlX6M
YouTube
Domino's clone app in Flutter | Flutter UI | Part-2
n this video, i have tried to explain to you how to create UI like dominos app. I hope you will like it.
Link of the Part-1 :- https://youtu.be/0veUMmix8P8
Note: Reduce the speed of the video to see the realtime coding.
Note: 50% of this channel earning…
Link of the Part-1 :- https://youtu.be/0veUMmix8P8
Note: Reduce the speed of the video to see the realtime coding.
Note: 50% of this channel earning…
New post on /r/flutterdev subreddit:
ObjectBox reaches 1.0 - new & fast Flutter Database for Dart objects
https://ift.tt/3tVPpIn
May 18, 2021 at 02:46PM by greenrobot_de
https://ift.tt/3uZFfb9
ObjectBox reaches 1.0 - new & fast Flutter Database for Dart objects
https://ift.tt/3tVPpIn
May 18, 2021 at 02:46PM by greenrobot_de
https://ift.tt/3uZFfb9
ObjectBox
Dart Flutter Database ObjectBox 1.0 Release - ObjectBox
The Dart Flutter NoSQL database 1.0 brings improved performance for Mobile and Desktop Apps as well as Data Sync
New post on /r/flutterdev subreddit:
SwiftUI for the Flutter Developer
https://ift.tt/3eWT8kN
May 18, 2021 at 03:46PM by KushalGoel786
https://ift.tt/3oyAcMj
SwiftUI for the Flutter Developer
https://ift.tt/3eWT8kN
May 18, 2021 at 03:46PM by KushalGoel786
https://ift.tt/3oyAcMj
Medium
SwiftUI for the Flutter Developer
SwiftUI is Apple’s 🖥 New UI Toolkit for Building Native iOS Apps 📱. So if you have heard rumors 🤔 about it & want to know more, Smile 😜…
New post on /r/flutterdev subreddit:
Flutter News Application using GetX and WordPress Custom API - EP 01 - Minimal UI
https://youtu.be/-NQR89xwlK8
May 18, 2021 at 03:23PM by K_SNIPPET
https://ift.tt/3hAMLp8
Flutter News Application using GetX and WordPress Custom API - EP 01 - Minimal UI
https://youtu.be/-NQR89xwlK8
May 18, 2021 at 03:23PM by K_SNIPPET
https://ift.tt/3hAMLp8
YouTube
Flutter News Application using GetX and WordPress Custom API - EP 01 - Minimal UI
This is the 1st episode of the Flutter News Application using GetX and WordPress. In this Video we will Design the UI of the Application
Click 🔔 to get notified about our latest videos
Subscribe & Help us to Grow :)
✔ Subscribe
https://www.youtube.…
Click 🔔 to get notified about our latest videos
Subscribe & Help us to Grow :)
✔ Subscribe
https://www.youtube.…
New post on Flutter Dev Google group:
Mobx problem
Hi guys I have created a listview using mobx and when I am trying to search the results are getting displayed only after a hot reload can anyone help please?
May 18, 2021 at 04:18PM by P Sanjeevi
https://ift.tt/2Rm6T3A
Mobx problem
Hi guys I have created a listview using mobx and when I am trying to search the results are getting displayed only after a hot reload can anyone help please?
May 18, 2021 at 04:18PM by P Sanjeevi
https://ift.tt/2Rm6T3A
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:
Flutter Push Notification V2 Tutorial Latest
https://youtu.be/dbp7jSX6xnU
May 18, 2021 at 04:38PM by Youtube projects
https://ift.tt/2Rv3rUf
Flutter Push Notification V2 Tutorial Latest
https://youtu.be/dbp7jSX6xnU
May 18, 2021 at 04:38PM by Youtube projects
https://ift.tt/2Rv3rUf
YouTube
Flutter Push Notification V2 with Firebase Cloud Messaging Android FCM Beginner Latest Tutorial
#flutter #flutterpushnotification #firebase #flutterfirebase #flutternotification #pushnotificationIn this video we are implementing flutter push notificatio...
New post on /r/flutterdev subreddit:
Which lib do you use for localization?
Hey I'm about to add localization to my App and was comparing the existing localization libs that we have right now.- Intl: Google's official solution, not well maintained, many issues and complicated ARB files- Easy_localization: Bit better maintained, still lot of issues, open PR's for long time but JsonBoth options sound not really promising and seems it's likely to encounter on of the many issues pretty fast. So I was wondering what other people use in Production, which one is your favourite? Or are there alternatives?
May 18, 2021 at 05:13PM by FintasysJP
https://ift.tt/3yoGfYy
Which lib do you use for localization?
Hey I'm about to add localization to my App and was comparing the existing localization libs that we have right now.- Intl: Google's official solution, not well maintained, many issues and complicated ARB files- Easy_localization: Bit better maintained, still lot of issues, open PR's for long time but JsonBoth options sound not really promising and seems it's likely to encounter on of the many issues pretty fast. So I was wondering what other people use in Production, which one is your favourite? Or are there alternatives?
May 18, 2021 at 05:13PM by FintasysJP
https://ift.tt/3yoGfYy
reddit
Which lib do you use for localization?
Hey I'm about to add localization to my App and was comparing the existing localization libs that we have right now. **- Intl:** Google's...