New post on /r/flutterdev subreddit:
Flutter long shadow animation.
https://ift.tt/2zMBpKN
May 23, 2020 at 08:50PM by jmonga98
https://ift.tt/2LTM6Om
Flutter long shadow animation.
https://ift.tt/2zMBpKN
May 23, 2020 at 08:50PM by jmonga98
https://ift.tt/2LTM6Om
New post on /r/flutterdev subreddit:
Parallax hover effect
https://ift.tt/3gfLu3u
May 23, 2020 at 08:49PM by jmonga98
https://ift.tt/2A8Fl8z
Parallax hover effect
https://ift.tt/3gfLu3u
May 23, 2020 at 08:49PM by jmonga98
https://ift.tt/2A8Fl8z
New post on /r/flutterdev subreddit:
Really interesting Flutter callback
Hi! I've been coding up my app and I needed a way to add a listener to a ChangeNotifier, and then remove it as soon as it's called. I'm not sure if there is a better way to do it, but I thought this was really cool and shows the strengths of Dart:
May 23, 2020 at 09:38PM by anthOlei
https://ift.tt/2TvZAnA
Really interesting Flutter callback
Hi! I've been coding up my app and I needed a way to add a listener to a ChangeNotifier, and then remove it as soon as it's called. I'm not sure if there is a better way to do it, but I thought this was really cool and shows the strengths of Dart:
//creates a listener that only triggers once, and then removes itself void createSelfRemovingListener(void Function() functionToCall, ChangeNotifier notifier){ void Function() f; f = (){ functionToCall(); notifier.removeListener(f); }; notifier.addListener(f); }so, what happens here is function f is defined, and inside the definition of the function, it calls the function that needs to be called. then, it instantly removes the listener (itself). that means if the change notifier sends out 10 events, the listener will only trigger once!Let me know your thoughts!
May 23, 2020 at 09:38PM by anthOlei
https://ift.tt/2TvZAnA
reddit
Really interesting Flutter callback
Hi! I've been coding up my app and I needed a way to add a listener to a ChangeNotifier, and then remove it as soon as it's called. I'm not sure...
New post on /r/flutterdev subreddit:
How to Use Advanced Providers
https://youtu.be/veqCc_fgZbc
May 23, 2020 at 11:10PM by thehappyharis
https://ift.tt/3cWcyTu
How to Use Advanced Providers
https://youtu.be/veqCc_fgZbc
May 23, 2020 at 11:10PM by thehappyharis
https://ift.tt/3cWcyTu
YouTube
How to Use Advanced Providers | Flutter Singapore Flutter Meetup #4
I gave a talk in Singapore Flutter Meetup Yikes.
👉 Pre Sign Up to Create a Flutter Portfolio with Flutter Web Course:
https://forms.gle/jsZtpfR4tzKq8ijr5
⏰ Timeline:
00:00 - Introduction
07:25 - ProxyProvider
08:50 - ChangeNotfierProxyProvider
19:35 -…
👉 Pre Sign Up to Create a Flutter Portfolio with Flutter Web Course:
https://forms.gle/jsZtpfR4tzKq8ijr5
⏰ Timeline:
00:00 - Introduction
07:25 - ProxyProvider
08:50 - ChangeNotfierProxyProvider
19:35 -…
New post on Flutter Dev Google group:
Very basic but fundamental question
Can we make a website out of a Fullter app? Thanks
May 23, 2020 at 11:50PM by Cindy Wang
https://ift.tt/36qcmZZ
Very basic but fundamental question
Can we make a website out of a Fullter app? Thanks
May 23, 2020 at 11:50PM by Cindy Wang
https://ift.tt/36qcmZZ
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:
[Self-Promotion] Blog post on Expanded vs Flexible
Hey everyone,I wrote a medium article on differences between Expanded vs Flexible. Its not behind paywall and would really appreciate any feedback you have, even downvotes or even being critical.Cheers!https://medium.com/@sid.310/flutter-responsive-apps-flexible-vs-expanded-ff8cc92b468f
May 24, 2020 at 12:04AM by wisecrack2
https://ift.tt/3givNZq
[Self-Promotion] Blog post on Expanded vs Flexible
Hey everyone,I wrote a medium article on differences between Expanded vs Flexible. Its not behind paywall and would really appreciate any feedback you have, even downvotes or even being critical.Cheers!https://medium.com/@sid.310/flutter-responsive-apps-flexible-vs-expanded-ff8cc92b468f
May 24, 2020 at 12:04AM by wisecrack2
https://ift.tt/3givNZq
Medium
Flutter Responsive Apps: Flexible vs Expanded
Introduction
New post on Flutter Dev Google group:
New flutter package
Hey guys, I made this package for flutter. After the launch of flutter web on beta I wanted serve my app on web so everyone can review it easily. So my quest begins when i started to find packages for the same task and I couldn't so I thought why not make it myself, so here is my package named
May 24, 2020 at 12:13AM by Darshan Rander
https://ift.tt/2WXukAf
New flutter package
Hey guys, I made this package for flutter. After the launch of flutter web on beta I wanted serve my app on web so everyone can review it easily. So my quest begins when i started to find packages for the same task and I couldn't so I thought why not make it myself, so here is my package named
May 24, 2020 at 12:13AM by Darshan Rander
https://ift.tt/2WXukAf
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:
How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change
May 24, 2020 at 12:33AM by Attaullah Khan
https://ift.tt/3gjgIH6
How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change
May 24, 2020 at 12:33AM by Attaullah Khan
https://ift.tt/3gjgIH6
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:
How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change
May 24, 2020 at 12:34AM by Attaullah Khan
https://ift.tt/2WX2gwH
How to use SharedPrefrences package
i want to use SharedPreferences , i have created theses two functions set and get and calling it on void inistate,,,,when i change the value of key,,it's not reflecting on first restart,,,like if i change that 12345 to something else and restart. it show the old value,on second restart it change
May 24, 2020 at 12:34AM by Attaullah Khan
https://ift.tt/2WX2gwH
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:
Need emergency help.... I can't run flutter app in android device and can't build apk due to gradle issue
*When i run this bellow things are shown:* FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not resolve
May 24, 2020 at 12:52AM by Syed Sohan Ahmed
https://ift.tt/2XnRfn7
Need emergency help.... I can't run flutter app in android device and can't build apk due to gradle issue
*When i run this bellow things are shown:* FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not resolve
May 24, 2020 at 12:52AM by Syed Sohan Ahmed
https://ift.tt/2XnRfn7
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:
Toughest Flutter concepts to learn as a beginner?
When just starting to learn Flutter, what were some of the most challenging concepts for you to learn and understand? Also, what about the concept made it unintuitive for you?
May 24, 2020 at 02:34AM by thebteam10
https://ift.tt/2XnoSFM
Toughest Flutter concepts to learn as a beginner?
When just starting to learn Flutter, what were some of the most challenging concepts for you to learn and understand? Also, what about the concept made it unintuitive for you?
May 24, 2020 at 02:34AM by thebteam10
https://ift.tt/2XnoSFM
reddit
Toughest Flutter concepts to learn as a beginner?
When just starting to learn Flutter, what were some of the most challenging concepts for you to learn and understand? Also, what about the concept...
New post on Flutter Dev Google group:
Flutter -
Need help... did anyone get a compiler error like this.."Compiler message: lib/main.dart:1:8: Error: Not found: 'dart:js' import 'dart:js';" and how to fix it? Thanks !
May 24, 2020 at 03:27AM by Heli Perera
https://ift.tt/3gglBRd
Flutter -
Need help... did anyone get a compiler error like this.."Compiler message: lib/main.dart:1:8: Error: Not found: 'dart:js' import 'dart:js';" and how to fix it? Thanks !
May 24, 2020 at 03:27AM by Heli Perera
https://ift.tt/3gglBRd
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:
Covid-19 App - Flutter UI - Speed Code
https://youtu.be/JBI78K7G5sg
May 24, 2020 at 03:47AM by sugarCubeeee
https://ift.tt/2LVKofe
Covid-19 App - Flutter UI - Speed Code
https://youtu.be/JBI78K7G5sg
May 24, 2020 at 03:47AM by sugarCubeeee
https://ift.tt/2LVKofe
YouTube
Covid-19 App - Flutter UI - Speed Code
Covid-19 App - Flutter UI - Speed Code
Important Announcement:
This channel has been re-branded from DEVLIFT into Minimalist Ux Dev so you will encounter the old logo and name in this video.
Converts design mockups into flutter app.
0:00 Intro
00:05 -…
Important Announcement:
This channel has been re-branded from DEVLIFT into Minimalist Ux Dev so you will encounter the old logo and name in this video.
Converts design mockups into flutter app.
0:00 Intro
00:05 -…
New post on /r/flutterdev subreddit:
The proper way to make API calls in Flutter
https://ift.tt/2ZyoAyq
May 24, 2020 at 04:15AM by Mastersamxyz
https://ift.tt/2TyodAi
The proper way to make API calls in Flutter
https://ift.tt/2ZyoAyq
May 24, 2020 at 04:15AM by Mastersamxyz
https://ift.tt/2TyodAi
Medium
Making Your API Calls In Flutter The Right Way
Common mistakes Flutter engineers make and a sample project that explains in detail, how to properly make Flutter API calls.
New post on /r/flutterdev subreddit:
Navoki Notes in Flutter with Firebase Cloud Firestore and Authentication
Navoki Notes, Its is a cross platform app made using Flutter with Firebase Cloud Firestore as backend, Firebase Authentication and is Open Sourced to be used and modify. . App is made using Flutter framework with single codebase for Android, iOS, Web App, PWA, Windows, MacOS, Linux with Firebase. You can build your own cross platform app over this just by changing Flutter code only.https://www.youtube.com/watch?v=g-hPh6FPfgoGithub: https://github.com/theshivamlko/navoki\_notes
May 24, 2020 at 04:24AM by theshivamlko
https://ift.tt/3e7Rr0u
Navoki Notes in Flutter with Firebase Cloud Firestore and Authentication
Navoki Notes, Its is a cross platform app made using Flutter with Firebase Cloud Firestore as backend, Firebase Authentication and is Open Sourced to be used and modify. . App is made using Flutter framework with single codebase for Android, iOS, Web App, PWA, Windows, MacOS, Linux with Firebase. You can build your own cross platform app over this just by changing Flutter code only.https://www.youtube.com/watch?v=g-hPh6FPfgoGithub: https://github.com/theshivamlko/navoki\_notes
May 24, 2020 at 04:24AM by theshivamlko
https://ift.tt/3e7Rr0u
YouTube
Navoki Notes in Flutter with Firebase Cloud Firestore and Authentication | Hindi
Navoki Notes in Flutter with Firebase Cloud Firestore and Authentication. Its is a cross platform app made using Flutter with Firebase Cloud Firestore as backend, Firebase Authentication and is Open Sourced to be used and modify. App is made using Flutter…
New post on /r/flutterdev subreddit:
Why Flutter is dead on arrival for iOS/Android | TechLead
https://www.youtube.com/watch?v=mca0cjuUC04
May 24, 2020 at 07:54AM by CapTyro
https://ift.tt/2AXCSOT
Why Flutter is dead on arrival for iOS/Android | TechLead
https://www.youtube.com/watch?v=mca0cjuUC04
May 24, 2020 at 07:54AM by CapTyro
https://ift.tt/2AXCSOT
YouTube
Why Flutter is dead on arrival for iOS/Android | TechLead
Welcome to my second channel for TechLead. This is just a fun casual channel for discussing tech, business, lifestyle, and random stuff without worrying about trying to gain views.
Today we're discussing the Flutter framework for mobile development across…
Today we're discussing the Flutter framework for mobile development across…
New post on Flutter Dev Google group:
Siberian
Hello, is there an edition platform like Siberian but in Flutter ???
May 24, 2020 at 10:07AM by Alzeto Pascal
https://ift.tt/36qcXuR
Siberian
Hello, is there an edition platform like Siberian but in Flutter ???
May 24, 2020 at 10:07AM by Alzeto Pascal
https://ift.tt/36qcXuR
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:
Experiment: Creating automatic agile documentation with Flutter
https://ift.tt/3cZI6rp
May 24, 2020 at 11:06AM by mcfly-dev
https://ift.tt/2WWPWwi
Experiment: Creating automatic agile documentation with Flutter
https://ift.tt/3cZI6rp
May 24, 2020 at 11:06AM by mcfly-dev
https://ift.tt/2WWPWwi
Medium
1 step into Flutter agile documentation
As a developper you want to involve product owner, QA as much as you can. If like me you love TDD and agile working you know that your…
New post on /r/flutterdev subreddit:
Flutter for absolute beginners - Basic widgets of Flutter - Create WhatsApp Business pages - 3
https://youtu.be/EVO1zSFLYa0
May 24, 2020 at 11:45AM by rob822
https://ift.tt/3ecQOTj
Flutter for absolute beginners - Basic widgets of Flutter - Create WhatsApp Business pages - 3
https://youtu.be/EVO1zSFLYa0
May 24, 2020 at 11:45AM by rob822
https://ift.tt/3ecQOTj
YouTube
Flutter for absolute beginners - Basic widgets of Flutter - Create WhatsApp Business pages - 3
In this tutorial, we will create WhatsApp Business template by using basic flutter widgets like- Container, Column, Row, Image, ListView, ListTile, safeArea,...
New post on /r/flutterdev subreddit:
WIREDASH TUTORIAL
https://www.youtube.com/watch?v=bfXKYyH-HCo&feature=share
May 24, 2020 at 11:41AM by prateeksharma1712
https://ift.tt/2LTvVRh
WIREDASH TUTORIAL
https://www.youtube.com/watch?v=bfXKYyH-HCo&feature=share
May 24, 2020 at 11:41AM by prateeksharma1712
https://ift.tt/2LTvVRh
YouTube
WIREDASH TUTORIAL | Flutter
#Wiredash #Feedback
Feedbacks are very important for any apps but are your app users providing feedback with normal 5/4 star dialog boxes. Probably, you need to look for Wiredash in Flutter apps, that allows user to take screenshot together with feedback…
Feedbacks are very important for any apps but are your app users providing feedback with normal 5/4 star dialog boxes. Probably, you need to look for Wiredash in Flutter apps, that allows user to take screenshot together with feedback…
New post on /r/flutterdev subreddit:
Sip calculator app
https://ift.tt/3efRLKQ
May 24, 2020 at 12:09PM by nimgpt
https://ift.tt/3cZvrVz
Sip calculator app
https://ift.tt/3efRLKQ
May 24, 2020 at 12:09PM by nimgpt
https://ift.tt/3cZvrVz
Google Play
SIP Calculator / Planner - Investment Calculator - Apps on Google Play
This is a SIP(Systematic Investment Plan) Calculator/Planner Application. It can be used to know your monthly investment which is required to achieve your financial goal. Happy investing.
"SIP" - most buzzing word in mutual fund industry as 'systematic investment…
"SIP" - most buzzing word in mutual fund industry as 'systematic investment…