New post on /r/flutterdev subreddit:
Alternative To Google Maps?
So a couple of friends and I had an idea for an app that requires a map to be rendered that we can draw / render some more stuff on top of. The goto choice for this would obviously be google maps, but we're not really crazy about those google maps api prices so we are considering using an open source alternative, since there are quite a lot out there. But the problem is that most of those open source map libaries have javascript sdks so we might have to use react native instead.So, especially considering that flutter is also from google, are there any production ready map renderer alternatives to google maps for flutter? And if not, do you know of any in react native?
August 27, 2020 at 07:45PM by daniellionel
https://ift.tt/2QxFqb3
Alternative To Google Maps?
So a couple of friends and I had an idea for an app that requires a map to be rendered that we can draw / render some more stuff on top of. The goto choice for this would obviously be google maps, but we're not really crazy about those google maps api prices so we are considering using an open source alternative, since there are quite a lot out there. But the problem is that most of those open source map libaries have javascript sdks so we might have to use react native instead.So, especially considering that flutter is also from google, are there any production ready map renderer alternatives to google maps for flutter? And if not, do you know of any in react native?
August 27, 2020 at 07:45PM by daniellionel
https://ift.tt/2QxFqb3
reddit
Alternative To Google Maps?
So a couple of friends and I had an idea for an app that requires a map to be rendered that we can draw / render some more stuff on top of. The...
New post on /r/flutterdev subreddit:
Using StreamBuilder to render a favorites list (The Boring Flutter Devel...
https://www.youtube.com/watch?v=26pFZL9xugo&feature=share
August 27, 2020 at 07:57PM by Pixelreddit
https://ift.tt/3gvmzrv
Using StreamBuilder to render a favorites list (The Boring Flutter Devel...
https://www.youtube.com/watch?v=26pFZL9xugo&feature=share
August 27, 2020 at 07:57PM by Pixelreddit
https://ift.tt/3gvmzrv
YouTube
Using StreamBuilder to render a favorites list (The Boring Flutter Development Show, Ep. 42)
In this episode, Fitz shares a couple of UI tweaks, general updates, and rendering the favorite articles page in our long-running Flutter app! Timestamps:3:0...
New tweet from FlutterDev:
👏 We're back with Hacker News updates...
Join @Fitzface as he works through getting the UI built for the "favorites" page.
🌟ListView
🌟StreamBuilder
🌟BuildContext, and more.
Watch the #BoringShow → https://t.co/ECeV6fpR2w pic.twitter.com/lnX2jvixRi— Flutter (@FlutterDev) August 27, 2020
August 27, 2020 at 07:44PM
http://twitter.com/FlutterDev/status/1299040036306944000
👏 We're back with Hacker News updates...
Join @Fitzface as he works through getting the UI built for the "favorites" page.
🌟ListView
🌟StreamBuilder
🌟BuildContext, and more.
Watch the #BoringShow → https://t.co/ECeV6fpR2w pic.twitter.com/lnX2jvixRi— Flutter (@FlutterDev) August 27, 2020
August 27, 2020 at 07:44PM
http://twitter.com/FlutterDev/status/1299040036306944000
New post on /r/flutterdev subreddit:
Using a function in provider package
I am adding an event in the calendar in a map,
Map<DateTime, List<EventStore>> _events ={};Now When any date is selected in the calendar I want the events to show in the calendar, but In my case whenever any date is selected it does not show the event immediately but after reloading the app.
I have tried this for showing the events when any date is selected,on calendar
and event
of onSelectedDay
like above.
How can I show the events when any date is selected immediatly?
August 28, 2020 at 07:30AM by Aaaamaaaaaannnn
https://ift.tt/3hCs5tY
Using a function in provider package
I am adding an event in the calendar in a map,
Map<DateTime, List<EventStore>> _events ={};Now When any date is selected in the calendar I want the events to show in the calendar, but In my case whenever any date is selected it does not show the event immediately but after reloading the app.
I have tried this for showing the events when any date is selected,on calendar
onDaySelected: eventModifierProvider.whenSelectedDay,on provider
whenSelectedDay(_date,_event){ selectedEvents = _event.cast<EventStore>(); notifyListeners(); }It feels as if I have done any mistake in working with parameters. I have tried using Date
and event
of onSelectedDay
like above.
How can I show the events when any date is selected immediatly?
August 28, 2020 at 07:30AM by Aaaamaaaaaannnn
https://ift.tt/3hCs5tY
reddit
Using a function in provider package
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Easily request user's phone number and consent to read sms without adding any permissions!
https://pub.dev/packages/sms_user_consent
August 28, 2020 at 08:31AM by tuttski
https://ift.tt/31yAbOw
Easily request user's phone number and consent to read sms without adding any permissions!
https://pub.dev/packages/sms_user_consent
August 28, 2020 at 08:31AM by tuttski
https://ift.tt/31yAbOw
Dart packages
sms_user_consent | Flutter package
Request user's phone number (supports dual sim) and/or consent to read SMS without adding any permissions
New post on Flutter Dev Google group:
How To Get User's Display Name & Image Upon Signup
Hi guys, I need help... I am trying to get user's display name and image upon sign up so that I can use it elsewhere like the picture below (sharedpreferences): [image: IMG_20200825_111050.jpg] but I have an issue because I can't find any docs that says that sharedpref can get that details... I
August 28, 2020 at 09:58AM by Charisa Emmanuel
https://ift.tt/32xemOH
How To Get User's Display Name & Image Upon Signup
Hi guys, I need help... I am trying to get user's display name and image upon sign up so that I can use it elsewhere like the picture below (sharedpreferences): [image: IMG_20200825_111050.jpg] but I have an issue because I can't find any docs that says that sharedpref can get that details... I
August 28, 2020 at 09:58AM by Charisa Emmanuel
https://ift.tt/32xemOH
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:
Why build function is getting call when trying to open and close keyboard in flutter
Hello friends, Why build function is getting call when try to open and close keyboard. 1.I've made statefull class(Hompage) where define map on this map multiple markers rendering these markers data coming from server using provider with consumer.On this page use customAppbar class(stateless) in
August 28, 2020 at 10:37AM by sumi...@gmail.com
https://ift.tt/32C1sz7
Why build function is getting call when trying to open and close keyboard in flutter
Hello friends, Why build function is getting call when try to open and close keyboard. 1.I've made statefull class(Hompage) where define map on this map multiple markers rendering these markers data coming from server using provider with consumer.On this page use customAppbar class(stateless) in
August 28, 2020 at 10:37AM by sumi...@gmail.com
https://ift.tt/32C1sz7
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:
Easily request user's phone number and consent to read sms (no permissions required)
https://ift.tt/31wbd2g
August 28, 2020 at 10:25AM by tuttski
https://ift.tt/34EuRuS
Easily request user's phone number and consent to read sms (no permissions required)
https://ift.tt/31wbd2g
August 28, 2020 at 10:25AM by tuttski
https://ift.tt/34EuRuS
Dart packages
sms_user_consent | Flutter Package
Request user's phone number (supports dual sim) and/or consent to read SMS without adding any permissions
New post on /r/flutterdev subreddit:
Let's make your App more Attractive with Animated Splash screen Package
https://www.youtube.com/watch?v=jATox3OCefw
August 28, 2020 at 08:53AM by Radheygoswami
https://ift.tt/2QAD6zO
Let's make your App more Attractive with Animated Splash screen Package
https://www.youtube.com/watch?v=jATox3OCefw
August 28, 2020 at 08:53AM by Radheygoswami
https://ift.tt/2QAD6zO
YouTube
Flutter Animated Splash Screen with different animations ( Package of the Week 🎁)
Hello Developers !!
In this video, you will learn to create awesome #flutter #Splash Screen with different Animations using #AnimatedSplashScreen package in just less than 2 min😍
Inspired by #WidgetoftheWeek I thought to share the best packages in my #Packageoftheweek…
In this video, you will learn to create awesome #flutter #Splash Screen with different Animations using #AnimatedSplashScreen package in just less than 2 min😍
Inspired by #WidgetoftheWeek I thought to share the best packages in my #Packageoftheweek…
New post on /r/flutterdev subreddit:
How We Developed A Startup MVP In 3 Weeks With Flutter And Firebase
https://ift.tt/2YEQacc
August 27, 2020 at 02:11PM by inveritasoft
https://ift.tt/31yjSBg
How We Developed A Startup MVP In 3 Weeks With Flutter And Firebase
https://ift.tt/2YEQacc
August 27, 2020 at 02:11PM by inveritasoft
https://ift.tt/31yjSBg
Medium
How We Developed A Startup MVP In 3 Weeks With Flutter And Firebase
A case study of building an MVP with Flutter and Firebase with limited time and budget
New post on /r/flutterdev subreddit:
Using StreamBuilder to render a favorites list (The Boring Flutter Development Show, Ep. 42)
https://www.youtube.com/watch?v=26pFZL9xugo
August 27, 2020 at 06:07PM by YangBachman
https://ift.tt/2YHxIzI
Using StreamBuilder to render a favorites list (The Boring Flutter Development Show, Ep. 42)
https://www.youtube.com/watch?v=26pFZL9xugo
August 27, 2020 at 06:07PM by YangBachman
https://ift.tt/2YHxIzI
YouTube
Using StreamBuilder to render a favorites list (The Boring Flutter Development Show, Ep. 42)
In this episode, Fitz shares a couple of UI tweaks, general updates, and rendering the favorite articles page in our long-running Flutter app!
Timestamps:
3:04 - Tracing how the favorites get recorded.
5:56 - Integrating Provider into the FavoritesPage…
Timestamps:
3:04 - Tracing how the favorites get recorded.
5:56 - Integrating Provider into the FavoritesPage…
New post on /r/flutterdev subreddit:
Flutter: Download Large Files (Pdf, Json, MP3, Image etc) With Progress %
https://www.youtube.com/watch?v=j3kDocLnKLY
August 28, 2020 at 12:17AM by SnippetCoder
https://ift.tt/2EpfcFj
Flutter: Download Large Files (Pdf, Json, MP3, Image etc) With Progress %
https://www.youtube.com/watch?v=j3kDocLnKLY
August 28, 2020 at 12:17AM by SnippetCoder
https://ift.tt/2EpfcFj
YouTube
Flutter: Download Large Files (Pdf, Json, MP3, Image etc) With Progress %
In this video, we learn how to file download in Flutter Application, with just few lines of code.
Click 🔔 to get notified about our latest videos
Subscribe & Help us to Grow :)
✔ Subscribe
https://www.youtube.com/SnippetCoder
✔ Twitter
https://twi…
Click 🔔 to get notified about our latest videos
Subscribe & Help us to Grow :)
✔ Subscribe
https://www.youtube.com/SnippetCoder
https://twi…
New post on /r/flutterdev subreddit:
Flutter App UI - Real Estate - Speed Code
https://youtu.be/4zJlomgkNQ4
August 28, 2020 at 04:32AM by AllAboutFlutter
https://ift.tt/2YHxMPY
Flutter App UI - Real Estate - Speed Code
https://youtu.be/4zJlomgkNQ4
August 28, 2020 at 04:32AM by AllAboutFlutter
https://ift.tt/2YHxMPY
YouTube
Flutter App UI - Real Estate - Speed Code
🚀 Nice, clean and modern Real Estate #App #UI made in #Flutter
👨🎨 Inspiration
https://dribbble.com/shots/9072797-Search-Real-Estate-App
💻 GitHub Source Code
https://github.com/gerfagerfa/real_estate
⚠️ IMPORTANT: If you want to learn, I strongly advise…
👨🎨 Inspiration
https://dribbble.com/shots/9072797-Search-Real-Estate-App
💻 GitHub Source Code
https://github.com/gerfagerfa/real_estate
⚠️ IMPORTANT: If you want to learn, I strongly advise…
New post on /r/flutterdev subreddit:
Going down a rabbit hole of making games with Flutter
https://youtu.be/PbIlXoijRvM
August 28, 2020 at 08:02AM by Heisenlife
https://ift.tt/2EpeQhZ
Going down a rabbit hole of making games with Flutter
https://youtu.be/PbIlXoijRvM
August 28, 2020 at 08:02AM by Heisenlife
https://ift.tt/2EpeQhZ
YouTube
PACMAN GAME • FLUTTER TUTORIAL
🔥📱 My Habit Tracker: https://ritualz.app
💳📱 My Expense Tracker: https://dollatracker.app
🥷🏽 FOLLOW ME
Patreon: https://www.patreon.com/mitchkoko/
Instagram: https://instagram.com/createdbykoko/
Twitter: https://twitter.com/createdbykoko/
TikTok: https:/…
💳📱 My Expense Tracker: https://dollatracker.app
🥷🏽 FOLLOW ME
Patreon: https://www.patreon.com/mitchkoko/
Instagram: https://instagram.com/createdbykoko/
Twitter: https://twitter.com/createdbykoko/
TikTok: https:/…
New post on /r/flutterdev subreddit:
Create a miniplayer in Flutter
https://ift.tt/3hP3guk
August 28, 2020 at 11:32AM by VELSEM_
https://ift.tt/3b1BNnc
Create a miniplayer in Flutter
https://ift.tt/3hP3guk
August 28, 2020 at 11:32AM by VELSEM_
https://ift.tt/3b1BNnc
Dart packages
miniplayer | Flutter Package
A lightweight flutter package to simplify the creation of a miniplayer.
New post on Flutter Dev Google group:
Flutter - s3
Hi All, How do i get the list of all objects in S3 using flutter .
August 28, 2020 at 11:31AM by nishankara...@gmail.com
https://ift.tt/2YYM7aT
Flutter - s3
Hi All, How do i get the list of all objects in S3 using flutter .
August 28, 2020 at 11:31AM by nishankara...@gmail.com
https://ift.tt/2YYM7aT
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:
DataGrid for flutter.
https://ift.tt/3hsn5Il
August 28, 2020 at 11:48AM by weblaze_bosskmk
https://ift.tt/31Df2D3
DataGrid for flutter.
https://ift.tt/3hsn5Il
August 28, 2020 at 11:48AM by weblaze_bosskmk
https://ift.tt/31Df2D3
Dart packages
pluto_grid | Flutter Package
PlutoGrid is dataGrid for flutter. It is developed with Windows, Web first. There are plans to support Android and iOS as well.
New post on Flutter Dev Google group:
Raiders of the lost widget
This started with some simple improvement comments at: " https://ift.tt/2FZcTsM" However I am more concerned now. Having eventually found a widget that I was looking for and kept looking for because I thought:
August 28, 2020 at 12:21PM by Kevin Chadwick
https://ift.tt/32vNvTf
Raiders of the lost widget
This started with some simple improvement comments at: " https://ift.tt/2FZcTsM" However I am more concerned now. Having eventually found a widget that I was looking for and kept looking for because I thought:
August 28, 2020 at 12:21PM by Kevin Chadwick
https://ift.tt/32vNvTf
reddit
Impressions after switching from Xamarin and developing an app...
I have background in Xamarin.Forms development ([app1](https://github.com/maxim-saplin/CrossPlatformDiskTest) with over 100k installs,...
New post on /r/flutterdev subreddit:
How to implement an animated audio player with retro design in Flutter
https://ift.tt/2QB566o
August 28, 2020 at 12:58PM by flutterclutter
https://ift.tt/2YHaGc8
How to implement an animated audio player with retro design in Flutter
https://ift.tt/2QB566o
August 28, 2020 at 12:58PM by flutterclutter
https://ift.tt/2YHaGc8
Flutter Clutter
Implement an audio player with retro design in Flutter
Flutter tutorial on how to implement a retro audio player.
New post on /r/flutterdev subreddit:
Movie App | Industry Standard | Dev to Publish - Pilot Episode (1)
https://youtu.be/jGZuJlsXHCA
August 28, 2020 at 12:52PM by prateeksharma1712
https://ift.tt/3jrrwn1
Movie App | Industry Standard | Dev to Publish - Pilot Episode (1)
https://youtu.be/jGZuJlsXHCA
August 28, 2020 at 12:52PM by prateeksharma1712
https://ift.tt/3jrrwn1
YouTube
Complete Flutter App Course | Flutter Tutorial for Beginners | Movie App Pilot Episode (1)
#flutter #course
Join this channel to support the channel and get access to perks:
https://www.youtube.com/channel/UC3wqIkiaOUpO6EjJoCwH6_Q/join
I am bringing a series of videos for you to teach you how to build an Industry Standard Flutter Application…
Join this channel to support the channel and get access to perks:
https://www.youtube.com/channel/UC3wqIkiaOUpO6EjJoCwH6_Q/join
I am bringing a series of videos for you to teach you how to build an Industry Standard Flutter Application…
New post on /r/flutterdev subreddit:
Build A Flutter 💙 Tinder Clone with Firebase & BLoC #40/41 Message Widget
https://youtu.be/9JdbaLh4wXg
August 28, 2020 at 01:33PM by 26Waga
https://ift.tt/34EUxHN
Build A Flutter 💙 Tinder Clone with Firebase & BLoC #40/41 Message Widget
https://youtu.be/9JdbaLh4wXg
August 28, 2020 at 01:33PM by 26Waga
https://ift.tt/34EUxHN
YouTube
Build Flutter Tinder Clone with Firebase & BLoC #40/41 Message Widget
Build a Flutter Tinder Clone with Firebase and BLoC. In this video we build the Message Widget