New post on /r/flutterdev subreddit:
The FREE COMPLETE UDEMY CLONE COURSE🔥🔥🔥
Hey Guys! The FREE COMPLETE UDEMY CLONE COURSE is out now!!🔥🔥🔥This consists of :➡️GetX State Management➡️RazorPay Payment Integration➡️Video Player With Chewie➡️Firebase Push Notifications➡️Updated Firebase Google Auth➡️Querying In Cloud Firestore➡️Usage of Flutter Secure Storage➡️Firestore CRUD (Updated)➡️Complex Dependency Injection And Much More!⚡Yes this is for real and totally free.😁. Give this course a shot. Explore all the components. This shall be a great project for your resume and for all gigs.💵🕹️LIKE, COMMENT AND SHARE to help me reaching this course for those who need. This course shall teach you everything about REAL APP DEVELOPMENT PROJECTS!📱 And last thing, Do SUBSCRIBE if you find something meaningful❤️Hope this shall help you in your future projects!⚡⚡ (P.S : Upvote⬆️ to help this post getting reached to needed once❤️l)TAP TO GRAB THE COURSE
November 09, 2020 at 05:06AM by draculamasterwinzy
https://ift.tt/2U9mnp6
The FREE COMPLETE UDEMY CLONE COURSE🔥🔥🔥
Hey Guys! The FREE COMPLETE UDEMY CLONE COURSE is out now!!🔥🔥🔥This consists of :➡️GetX State Management➡️RazorPay Payment Integration➡️Video Player With Chewie➡️Firebase Push Notifications➡️Updated Firebase Google Auth➡️Querying In Cloud Firestore➡️Usage of Flutter Secure Storage➡️Firestore CRUD (Updated)➡️Complex Dependency Injection And Much More!⚡Yes this is for real and totally free.😁. Give this course a shot. Explore all the components. This shall be a great project for your resume and for all gigs.💵🕹️LIKE, COMMENT AND SHARE to help me reaching this course for those who need. This course shall teach you everything about REAL APP DEVELOPMENT PROJECTS!📱 And last thing, Do SUBSCRIBE if you find something meaningful❤️Hope this shall help you in your future projects!⚡⚡ (P.S : Upvote⬆️ to help this post getting reached to needed once❤️l)TAP TO GRAB THE COURSE
November 09, 2020 at 05:06AM by draculamasterwinzy
https://ift.tt/2U9mnp6
New post on Flutter Dev Google group:
HOW TO FIX THIS ERROR ?
How to fix this error ? FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:checkDebugDuplicateClasses'. > A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable > Duplicate class com.google.protobuf.Abstr
November 09, 2020 at 06:57AM by Mohamed Ridzwan Mohamed Haniffa
https://ift.tt/359Jjeg
HOW TO FIX THIS ERROR ?
How to fix this error ? FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:checkDebugDuplicateClasses'. > A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable > Duplicate class com.google.protobuf.Abstr
November 09, 2020 at 06:57AM by Mohamed Ridzwan Mohamed Haniffa
https://ift.tt/359Jjeg
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:
Design Complex UI in Flutter
https://ift.tt/35dL8ah
November 09, 2020 at 06:37AM by rrtutors
https://ift.tt/2U9zruE
Design Complex UI in Flutter
https://ift.tt/35dL8ah
November 09, 2020 at 06:37AM by rrtutors
https://ift.tt/2U9zruE
Rrtutors
Design Complex UI in Flutter - Animated Drawer Widget
In this post we are going to create complex UI with 3D Animation
New post on /r/flutterdev subreddit:
How to create/manage Rest-API services by using Dart/Flutter?
I'm trying to connect a relational database (MySQL or PostgreSQL) with a Flutter app (on Android and Web) through Rest-API services made with Dart/Flutter code. Rest-API with Dart/Flutter is new for me, so I'm in need of resources about how to implement them, taking security issues into account, that is, authentication and authorization to use endpoints.
November 09, 2020 at 06:19AM by warcayac
https://ift.tt/3p4bSSi
How to create/manage Rest-API services by using Dart/Flutter?
I'm trying to connect a relational database (MySQL or PostgreSQL) with a Flutter app (on Android and Web) through Rest-API services made with Dart/Flutter code. Rest-API with Dart/Flutter is new for me, so I'm in need of resources about how to implement them, taking security issues into account, that is, authentication and authorization to use endpoints.
November 09, 2020 at 06:19AM by warcayac
https://ift.tt/3p4bSSi
reddit
How to create/manage Rest-API services by using Dart/Flutter?
I'm trying to connect a relational database (MySQL or PostgreSQL) with a Flutter app (on Android and Web) through Rest-API services made with...
New post on /r/flutterdev subreddit:
Go-inspired error handling
I really like the way error handling is done in Go. I'm too lazy for try-catching errors everywhere, so in my latest Flutter project I created a class, which holds data and error and delegated error handling to a static method of it. Class implementation Gist. Any thoughts?Edit: Add raw code
November 09, 2020 at 12:10PM by fperson_
https://ift.tt/3lgKGxi
Go-inspired error handling
I really like the way error handling is done in Go. I'm too lazy for try-catching errors everywhere, so in my latest Flutter project I created a class, which holds data and error and delegated error handling to a static method of it. Class implementation Gist. Any thoughts?Edit: Add raw code
import 'package:dio/dio.dart'; typedef _DataOrErrorFunction<T> = Future<T> Function(); class DataWithError<T> { final String error; final T data; const DataWithError({this.error, this.data}); factory DataWithError.fromDioError(DioError err) { if (err.response?.data != null && err.response.data.toString().trim().isNotEmpty) { return DataWithError(error: err.response.data.toString()); } else { return DataWithError(error: err.toString()); } } static Future<DataWithError<T>> tryAndCatch<T>( _DataOrErrorFunction<T> function, [ VoidCallback finallyCallback, ]) async { try { final response = await function(); return DataWithError(data: response); } on DioError catch (error) { return DataWithError.fromDioError(error); } catch (error) { return DataWithError(error: error.toString()); } finally { if (finallyCallback != null) finallyCallback(); } } }
November 09, 2020 at 12:10PM by fperson_
https://ift.tt/3lgKGxi
Gist
Go-inspired error handling in Dart
Go-inspired error handling in Dart. GitHub Gist: instantly share code, notes, and snippets.
New post on /r/flutterdev subreddit:
10 Flutter apps in 10 Hours livestream video
Hey guys,I had a livestream where I tried creating 10 Flutter apps in 10 hours. I would like to thank the people who have joined me in the livestream.Here are the apps:Timer app -- Watch | Source CodeQuiz app -- Watch | Source CodeNotes app -- Watch | Source Code (Failed due to provider not working as expected)Todo app -- Watch | Source CodeMovies app -- Watch | Source CodeGithub profiles app -- Watch | Source CodeWeather app -- Watch | Source CodeDrawing app -- Watch | Source CodeMusic player app -- Watch | Source Code (Failed as package was wonky)
Calculator app -- Watch | Source Code (Failed as it has a lot of steps)I had breaks every hour of coding so I won't go insane. And I just went to the next project if I can't finish/debug in that hour. No point spending more time in an app. Hope you guys enjoy it
November 09, 2020 at 11:27AM by thehappyharis
https://ift.tt/3keMMfX
10 Flutter apps in 10 Hours livestream video
Hey guys,I had a livestream where I tried creating 10 Flutter apps in 10 hours. I would like to thank the people who have joined me in the livestream.Here are the apps:Timer app -- Watch | Source CodeQuiz app -- Watch | Source CodeNotes app -- Watch | Source Code (Failed due to provider not working as expected)Todo app -- Watch | Source CodeMovies app -- Watch | Source CodeGithub profiles app -- Watch | Source CodeWeather app -- Watch | Source CodeDrawing app -- Watch | Source CodeMusic player app -- Watch | Source Code (Failed as package was wonky)
Calculator app -- Watch | Source Code (Failed as it has a lot of steps)I had breaks every hour of coding so I won't go insane. And I just went to the next project if I can't finish/debug in that hour. No point spending more time in an app. Hope you guys enjoy it
November 09, 2020 at 11:27AM by thehappyharis
https://ift.tt/3keMMfX
YouTube
10 Flutter Apps in 10 hours | Coding Challenge | Yikes
⏰ Timeline:
00:00 - Timer app
01:17:00 - Quiz app (Failed due to provider not working as expected)
02:18:40 - Notes app
03:18:25 - Todo app
04:14:19 - Movies app
05:00:50 - Github profiles app
05:41:05 - Weather app
06:40:18 - Drawing app
07:35:51 …
00:00 - Timer app
01:17:00 - Quiz app (Failed due to provider not working as expected)
02:18:40 - Notes app
03:18:25 - Todo app
04:14:19 - Movies app
05:00:50 - Github profiles app
05:41:05 - Weather app
06:40:18 - Drawing app
07:35:51 …
New post on /r/flutterdev subreddit:
Ultimate Flutter Cheat Sheet
Hey guys,Been using Flutter for about a year, noticed there's a lot of things I keep going back and checking StackOverflow for. You know, seemingly tiny things like
November 09, 2020 at 01:18PM by rockfloater
https://ift.tt/3eI5v2w
Ultimate Flutter Cheat Sheet
Hey guys,Been using Flutter for about a year, noticed there's a lot of things I keep going back and checking StackOverflow for. You know, seemingly tiny things like
BoxDecoration
properties, formatting DropDownButton
s or filtering List
s.Instead of ignoring them, I started noting them down and put them all together. Sprinkled a few chocolate treats here and there, and that's where this list came from:👉 https://yaz.in/flutter 👈Let me know what you think!TIP: I like to print mine and keep it next to my laptop. Here's what that looks like: https://imgur.com/a/LIfOPhKEDIT: Direct download link here.November 09, 2020 at 01:18PM by rockfloater
https://ift.tt/3eI5v2w
Yazin Alirhayim
Flutter
Welcome to Yazin Alirhayim’s personal website!
New post on /r/flutterdev subreddit:
How to create a quiz game with real geo data in Flutter
https://ift.tt/3n6POF0
November 09, 2020 at 01:11PM by flutterclutter
https://ift.tt/3kemevo
How to create a quiz game with real geo data in Flutter
https://ift.tt/3n6POF0
November 09, 2020 at 01:11PM by flutterclutter
https://ift.tt/3kemevo
Flutter Clutter
How to create a geo quiz game in Flutter
Learn how to query the Overpass API and embed a map
New post on /r/flutterdev subreddit:
Flutter Tap Weekly Newsletter Week 64! - Tutorials, videos, packages, and much more!
https://fluttertap.com/issue-64/
November 09, 2020 at 02:37PM by vensign
https://ift.tt/3n830Jy
Flutter Tap Weekly Newsletter Week 64! - Tutorials, videos, packages, and much more!
https://fluttertap.com/issue-64/
November 09, 2020 at 02:37PM by vensign
https://ift.tt/3n830Jy
Fluttertap
Newsletter Issue 63
Flutter Tap newsletter with the latest of Flutter. Articles, tutorials, videos and much more - Issue 63
New tweet from FlutterDev:
💰💙 Have you integrated Google Pay in your Flutter application?
Do existing 3rd party Google Pay plug-ins for Flutter fulfill your needs, or would a 1st party Google Pay plug-in be a better option?
Choose below ↓— Flutter (@FlutterDev) November 9, 2020
November 09, 2020 at 03:21PM
http://twitter.com/FlutterDev/status/1325805651273113600
💰💙 Have you integrated Google Pay in your Flutter application?
Do existing 3rd party Google Pay plug-ins for Flutter fulfill your needs, or would a 1st party Google Pay plug-in be a better option?
Choose below ↓— Flutter (@FlutterDev) November 9, 2020
November 09, 2020 at 03:21PM
http://twitter.com/FlutterDev/status/1325805651273113600
Twitter
Flutter
💰💙 Have you integrated Google Pay in your Flutter application? Do existing 3rd party Google Pay plug-ins for Flutter fulfill your needs, or would a 1st party Google Pay plug-in be a better option? Choose below ↓
New post on Flutter Dev Google group:
Intermediate training
Does anyone recommend any intermediate or advanced flutter training? Wishing for official certification .. ....sent from my phone
November 09, 2020 at 03:15PM by Neil J. Warner
https://ift.tt/2U6DQib
Intermediate training
Does anyone recommend any intermediate or advanced flutter training? Wishing for official certification .. ....sent from my phone
November 09, 2020 at 03:15PM by Neil J. Warner
https://ift.tt/2U6DQib
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:
Radix Sort
I am trying radix sort: This is my progress main() { // print(getDigitNum(7323, 11)); // print(digitCount(18683567)); // print(maxDigits([1,22,333])); // var n = 73.32 // print(n.round()); } getDigitNum(int n, int i) { // return ((n / 100).round() %10); // var cal = (n.abs() /
November 09, 2020 at 03:23PM by Droper
https://ift.tt/36eBmns
Radix Sort
I am trying radix sort: This is my progress main() { // print(getDigitNum(7323, 11)); // print(digitCount(18683567)); // print(maxDigits([1,22,333])); // var n = 73.32 // print(n.round()); } getDigitNum(int n, int i) { // return ((n / 100).round() %10); // var cal = (n.abs() /
November 09, 2020 at 03:23PM by Droper
https://ift.tt/36eBmns
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:
Learn Flutter Hooks and Maximize Your Code Reuse
https://www.youtube.com/watch?v=A1DUBgIsCv8
November 09, 2020 at 04:02PM by RobertBrunhage
https://ift.tt/3lg1xQP
Learn Flutter Hooks and Maximize Your Code Reuse
https://www.youtube.com/watch?v=A1DUBgIsCv8
November 09, 2020 at 04:02PM by RobertBrunhage
https://ift.tt/3lg1xQP
YouTube
Learn Flutter Hooks and Maximize Your Code Reuse
Flutter Hooks is a package that lets you separate the life-cycle logic from widgets to its own classes and methods. It's very powerful and now we will learn how to utilize it!
The Best Flutter Course on the Internet 👉 https://www.hungrimind.com/learn/flutter…
The Best Flutter Course on the Internet 👉 https://www.hungrimind.com/learn/flutter…
New post on /r/flutterdev subreddit:
Hi, newbie here talking again
Can I create an app similar to D&D Beyond's character creator? I need an app that can be input info about a character like class, armour, stats, etc and have their levels and characteristics be influenced by the values of their races, species, classes, etc, is it possible to create an app like this? similar to the functionalities you'd find on MS Excel?
November 09, 2020 at 03:09PM by DuduDude12
https://ift.tt/3eIINXH
Hi, newbie here talking again
Can I create an app similar to D&D Beyond's character creator? I need an app that can be input info about a character like class, armour, stats, etc and have their levels and characteristics be influenced by the values of their races, species, classes, etc, is it possible to create an app like this? similar to the functionalities you'd find on MS Excel?
November 09, 2020 at 03:09PM by DuduDude12
https://ift.tt/3eIINXH
reddit
Hi, newbie here talking again
Can I create an app similar to D&D Beyond's character creator? I need an app that can be input info about a character like class, armour, stats,...
New post on /r/flutterdev subreddit:
Hi, newbie dev here
Wondering if I create an app on Flutter/DART, will I be able to use it as well as a PWA?
November 09, 2020 at 03:06PM by DuduDude12
https://ift.tt/38y0nwu
Hi, newbie dev here
Wondering if I create an app on Flutter/DART, will I be able to use it as well as a PWA?
November 09, 2020 at 03:06PM by DuduDude12
https://ift.tt/38y0nwu
reddit
Hi, newbie dev here
A subreddit for Google's portable UI framework.
New post on Flutter Dev Google group:
HELP PLEASE! Flutter tests of Tab Bar
Hi all, I have a very simple tab bar appBar: AppBar( bottom: TabBar( tabs: [ Tab(icon: Icon(Icons.toc)), Tab(icon: Icon(Icons.school)), Tab(icon: Icon(Icons.connect_without_contact)), Tab(icon: Icon(Icons.mail_outline)), ], ), title: Text('MyApp'), ) and I want to test that each tab opens up the
November 09, 2020 at 04:12PM by Federico Mestrone
https://ift.tt/35dt8gb
HELP PLEASE! Flutter tests of Tab Bar
Hi all, I have a very simple tab bar appBar: AppBar( bottom: TabBar( tabs: [ Tab(icon: Icon(Icons.toc)), Tab(icon: Icon(Icons.school)), Tab(icon: Icon(Icons.connect_without_contact)), Tab(icon: Icon(Icons.mail_outline)), ], ), title: Text('MyApp'), ) and I want to test that each tab opens up the
November 09, 2020 at 04:12PM by Federico Mestrone
https://ift.tt/35dt8gb
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:
Ghana's first mobile-based hostel booking marketplace built with Flutter.
I just published the Android version of Abode, Ghana's first mobile-based hostel booking marketplace solving a decade-long problem of college students all around the country walking under the sun at the end of every academic year in search of a new hostel room to book for their next year.I'm a 21-year-old final year CS student, and founder of Abode, who singlehandedly built all of Abode's apps with Flutter under a year, and throughout the development, I've seen flutter get a whole lot better and insanely faster (considering the fact that I'm debugging with a budget Infinix phone).I'll be writing about my experience soon but you can check out the app on Playstore (https://play.google.com/store/apps/details?id=com.abodehostels.scout), follow us on Twitter (https://twitter.com/abode_hostels) or reach out to me (https://twitter.com/_codejo).
November 09, 2020 at 04:39PM by Code_jo
https://ift.tt/36gpGRi
Ghana's first mobile-based hostel booking marketplace built with Flutter.
I just published the Android version of Abode, Ghana's first mobile-based hostel booking marketplace solving a decade-long problem of college students all around the country walking under the sun at the end of every academic year in search of a new hostel room to book for their next year.I'm a 21-year-old final year CS student, and founder of Abode, who singlehandedly built all of Abode's apps with Flutter under a year, and throughout the development, I've seen flutter get a whole lot better and insanely faster (considering the fact that I'm debugging with a budget Infinix phone).I'll be writing about my experience soon but you can check out the app on Playstore (https://play.google.com/store/apps/details?id=com.abodehostels.scout), follow us on Twitter (https://twitter.com/abode_hostels) or reach out to me (https://twitter.com/_codejo).
November 09, 2020 at 04:39PM by Code_jo
https://ift.tt/36gpGRi
Google Play
Abode - Apps on Google Play
Safely book a hostel room online and never get lost on campus.
New post on Flutter Dev Google group:
Flutter installation problem, cant able accept license with letter Y or y
Hai All, I am new to this group, yesterday only I found this group. I am putting a problem in that I encountered during flutter installation..., When ever I try to accept the licenses I am getting the error as shown in the figure .I had tried with Capital 'Y' and small 'y', but no working.
November 09, 2020 at 05:43PM by Abhi
https://ift.tt/36hEOh3
Flutter installation problem, cant able accept license with letter Y or y
Hai All, I am new to this group, yesterday only I found this group. I am putting a problem in that I encountered during flutter installation..., When ever I try to accept the licenses I am getting the error as shown in the figure .I had tried with Capital 'Y' and small 'y', but no working.
November 09, 2020 at 05:43PM by Abhi
https://ift.tt/36hEOh3
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:
Row - Deep Dive - Flutter (Tutorial)
https://www.youtube.com/watch?v=fjcBkwguyOg
November 09, 2020 at 06:02PM by JohannesMilke
https://ift.tt/3lg0HDI
Row - Deep Dive - Flutter (Tutorial)
https://www.youtube.com/watch?v=fjcBkwguyOg
November 09, 2020 at 06:02PM by JohannesMilke
https://ift.tt/3lg0HDI
YouTube
Flutter Tutorial - Row - Deep Dive
The Row widget allows you to place multiple widgets horizontally next to each other.
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/row_example
- Buy My…
Click here to Subscribe to Johannes Milke: https://www.youtube.com/JohannesMilke?sub_confirmation=1
- Source Code: https://github.com/JohannesMilke/row_example
- Buy My…
New post on /r/flutterdev subreddit:
I created an app to learn flutter
Hi all,Today I just wanted to share my experience creating my first Flutter App without studying or knowing anything about flutter or dart before.So I'm a recent software developer, and I heard about flutter before but never used it or studied it, until the last month when I was, let's say suffering to watch a movie with someone, when you like something the other person doesn't or just doing the stubborn sometimes. so I had that idea of a solution to agree on one thing to watch and save time maybe.As a developer I had the logic to follow to make it, but knowing nothing about flutter was a challenge for me to learn it and at the same time making my app, and yes I'm that type of person that learn doing something and not studying it or learning the basics, I just get bored so fast.After about one month after installing flutter on my lap, and working on it after finishing my work, I was able to publish my app on the Play Store(for the moment) : MovitSo I hope you people try it and tell me what I can improve as my first app.side note : the app doesn't have any kind of ads, just made it as a challenge :)
November 09, 2020 at 05:43PM by docBadr
https://ift.tt/35dGOrx
I created an app to learn flutter
Hi all,Today I just wanted to share my experience creating my first Flutter App without studying or knowing anything about flutter or dart before.So I'm a recent software developer, and I heard about flutter before but never used it or studied it, until the last month when I was, let's say suffering to watch a movie with someone, when you like something the other person doesn't or just doing the stubborn sometimes. so I had that idea of a solution to agree on one thing to watch and save time maybe.As a developer I had the logic to follow to make it, but knowing nothing about flutter was a challenge for me to learn it and at the same time making my app, and yes I'm that type of person that learn doing something and not studying it or learning the basics, I just get bored so fast.After about one month after installing flutter on my lap, and working on it after finishing my work, I was able to publish my app on the Play Store(for the moment) : MovitSo I hope you people try it and tell me what I can improve as my first app.side note : the app doesn't have any kind of ads, just made it as a challenge :)
November 09, 2020 at 05:43PM by docBadr
https://ift.tt/35dGOrx
Google Play
Movit - Swipe, Match and Watch - Apps on Google Play
Taking so much time to choose a movie to watch ? Movit will help you !!