New post on /r/flutterdev subreddit:
What tool do you use for designing Flutter apps?
View Poll
August 25, 2020 at 10:39PM by goranlu
https://ift.tt/2Ew15xF
What tool do you use for designing Flutter apps?
View Poll
August 25, 2020 at 10:39PM by goranlu
https://ift.tt/2Ew15xF
New post on /r/flutterdev subreddit:
AWS Amplify for Flutter Apps in 100 Seconds
https://twitter.com/swyx/status/1298349861696282625
August 25, 2020 at 10:37PM by hb_to_ms
https://ift.tt/3aUwPbI
AWS Amplify for Flutter Apps in 100 Seconds
https://twitter.com/swyx/status/1298349861696282625
August 25, 2020 at 10:37PM by hb_to_ms
https://ift.tt/3aUwPbI
Twitter
shawn swyx wang
🆕 AWS Amplify for Flutter Apps in 100 Seconds 📺https://t.co/MD3sZB4hdZ 📖https://t.co/ywZx8rzVR5 Let's build a Photo-sharing app with Authentication and Storage with @AWSAmplify's new @FlutterDev support (in public Preview)! pls pardon the @ScreenFlow snafu…
New post on /r/flutterdev subreddit:
A quick guide to setting up Flutter for development in just 15 minutes!
https://youtu.be/vmzSHbQr4wU
August 25, 2020 at 04:54PM by TheFilipG
https://ift.tt/31pZFxB
A quick guide to setting up Flutter for development in just 15 minutes!
https://youtu.be/vmzSHbQr4wU
August 25, 2020 at 04:54PM by TheFilipG
https://ift.tt/31pZFxB
YouTube
Flutter Dev Setup in 15 MINUTES
SUBSCRIBE ► http://youtube.com/channel/UCG7EBd-JrRZehNv9e5m1fQQ?sub_confirmation=1
With cross-platform development becoming significantly more popular in todays market - it seems like Flutter is getting the reputation that it deserves. Flutter is a comprehensive…
With cross-platform development becoming significantly more popular in todays market - it seems like Flutter is getting the reputation that it deserves. Flutter is a comprehensive…
New post on /r/flutterdev subreddit:
Create Model Class for List of Objects Json Data || Create Dynamic Widget for list type of Data | #3
https://youtu.be/loVpUXTMSxw
August 25, 2020 at 03:59PM by devstackin
https://ift.tt/31sRn8j
Create Model Class for List of Objects Json Data || Create Dynamic Widget for list type of Data | #3
https://youtu.be/loVpUXTMSxw
August 25, 2020 at 03:59PM by devstackin
https://ift.tt/31sRn8j
YouTube
Fetch and Show List of Object data using Listview in Flutter through Rest API || Listview Builder
Show your support and subscribe to the channel -: https://devstack.page.link/eNh4
In this video -:
1) We will understand what is the different type of List of Objects Response
2) We will create the model class for List of Object Json Data
3) Fetch and Show…
In this video -:
1) We will understand what is the different type of List of Objects Response
2) We will create the model class for List of Object Json Data
3) Fetch and Show…
New post on /r/flutterdev subreddit:
TikTok Loading Animation in Flutter [Speed Code]
https://www.youtube.com/watch?v=7ETYduxVzzA
August 25, 2020 at 05:59PM by NeatSnippets
https://ift.tt/2D1WeUs
TikTok Loading Animation in Flutter [Speed Code]
https://www.youtube.com/watch?v=7ETYduxVzzA
August 25, 2020 at 05:59PM by NeatSnippets
https://ift.tt/2D1WeUs
YouTube
How to Create TikTok Loading Animation in Flutter [Speed Code]
Hire me on Upwork:
https://www.upwork.com/freelancers/~0177cff70f87a6e81f
Get the code with full explanation here:
https://neatsnippets.blogspot.com/2020/08/how-to-create-tiktok-loading-animation.html
In this Flutter example, I'll show you how to create…
https://www.upwork.com/freelancers/~0177cff70f87a6e81f
Get the code with full explanation here:
https://neatsnippets.blogspot.com/2020/08/how-to-create-tiktok-loading-animation.html
In this Flutter example, I'll show you how to create…
New post on /r/flutterdev subreddit:
First Look at AWS Amplify Flutter
https://ift.tt/32oNujP
August 25, 2020 at 09:46PM by hb_to_ms
https://ift.tt/2YBuMo1
First Look at AWS Amplify Flutter
https://ift.tt/32oNujP
August 25, 2020 at 09:46PM by hb_to_ms
https://ift.tt/2YBuMo1
DEV Community
First Look at AWS Amplify Flutter (Developer Preview)
AWS Amplify launched a Flutter Integration, so I thought I would record a quick video and blogpost
New post on /r/flutterdev subreddit:
Flutter - Animation with AnimatedContainer - Coflutter
https://ift.tt/34ui4LH
August 26, 2020 at 01:01AM by tranhuyphuc
https://ift.tt/2YAsjKC
Flutter - Animation with AnimatedContainer - Coflutter
https://ift.tt/34ui4LH
August 26, 2020 at 01:01AM by tranhuyphuc
https://ift.tt/2YAsjKC
Coflutter
Flutter - Animation with AnimatedContainer - Coflutter
We learn how to use built-in Animated Container, on of the most common animated widgets in Flutter.
New post on /r/flutterdev subreddit:
Massive FCM message amounts. Best Practise?
Hey, if possible, I'd like to hear your opinion about this situation I've got in right now.I will simplify a little here, as the whole context doesn't really matter, so trust me, what I want to do makes 100% sense if you'd know the whole story.Basically at first launch the user can choose a main-topic, 1 out of 30 and after that, he can select sub-topics (options depending on the main-topic) out of a list.The twist is that sometimes a sub-topic can be selected via all main topics, so basically I'd need to account for the situation that all sub-topics could also be selected via all main-topics.And basically after the user has selected those, they'll get a daily notification about the topics via cloud functions and fcm.Now for the tricky part : I'm using fcm topics which the devices subscribe to, so I can basically broadcast those messages.At first I thought : Yeah, I'll just create a fcm topic for every main-topic and sub-topic there is, until I realized, I'd then be blasting out a massive amount of notifications.The information broadcasted per notification is not big at all, and although it sounds stupid, basically the content of every notification can be compressed to one digit.So basically, instead of broadcasting one message with one digit per topic, I'd want to publish one notification with all digits based on the selected topics on a daily basis to the user.The problem is that with all possible combinations to account for, I'd be sending in the millions of notifications per day, since I'd need to account for every possible combination of main-topics and sub-topics.Could you think of a better solution than just subbing a user to topic
August 26, 2020 at 03:10AM by klingens13
https://ift.tt/2Ek8G2C
Massive FCM message amounts. Best Practise?
Hey, if possible, I'd like to hear your opinion about this situation I've got in right now.I will simplify a little here, as the whole context doesn't really matter, so trust me, what I want to do makes 100% sense if you'd know the whole story.Basically at first launch the user can choose a main-topic, 1 out of 30 and after that, he can select sub-topics (options depending on the main-topic) out of a list.The twist is that sometimes a sub-topic can be selected via all main topics, so basically I'd need to account for the situation that all sub-topics could also be selected via all main-topics.And basically after the user has selected those, they'll get a daily notification about the topics via cloud functions and fcm.Now for the tricky part : I'm using fcm topics which the devices subscribe to, so I can basically broadcast those messages.At first I thought : Yeah, I'll just create a fcm topic for every main-topic and sub-topic there is, until I realized, I'd then be blasting out a massive amount of notifications.The information broadcasted per notification is not big at all, and although it sounds stupid, basically the content of every notification can be compressed to one digit.So basically, instead of broadcasting one message with one digit per topic, I'd want to publish one notification with all digits based on the selected topics on a daily basis to the user.The problem is that with all possible combinations to account for, I'd be sending in the millions of notifications per day, since I'd need to account for every possible combination of main-topics and sub-topics.Could you think of a better solution than just subbing a user to topic
/topics/m12.s72.s63.s45.s52.s89.s31.s21.s94
and so forth since it doesn't seem exactly like best practise to me..?I'd be interested to hear your thoughts!(BTW : I'm using as mentioned Firebase Cloud Messages fired by Firebase Cloud Functions to Flutter Applications running on Android and iOS)August 26, 2020 at 03:10AM by klingens13
https://ift.tt/2Ek8G2C
reddit
Massive FCM message amounts. Best Practise?
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
flutter and hybrib app build with vue js
i have a pwa build with vue js which use firebase . i have been able to converted to a mobile app with capacitor.i want to migrate it to flutter for most of it's part i was able to.but for one specific component that have a necessary functionality i can't and i don't want to.is there is any way to integrate that component in a flutter app by using a webview or any other plugin???
August 26, 2020 at 03:37AM by elouanesbg
https://ift.tt/3aV67j6
flutter and hybrib app build with vue js
i have a pwa build with vue js which use firebase . i have been able to converted to a mobile app with capacitor.i want to migrate it to flutter for most of it's part i was able to.but for one specific component that have a necessary functionality i can't and i don't want to.is there is any way to integrate that component in a flutter app by using a webview or any other plugin???
August 26, 2020 at 03:37AM by elouanesbg
https://ift.tt/3aV67j6
reddit
flutter and hybrib app build with vue js
i have a pwa build with vue js which use firebase . i have been able to converted to a mobile app with capacitor. i want to migrate it to flutter...
New post on /r/flutterdev subreddit:
Quickies: 5 Things Flutter Can Improve
https://youtu.be/bqKXJLjJl9Y
August 26, 2020 at 05:15AM by dimension-software
https://ift.tt/2Eu8uO5
Quickies: 5 Things Flutter Can Improve
https://youtu.be/bqKXJLjJl9Y
August 26, 2020 at 05:15AM by dimension-software
https://ift.tt/2Eu8uO5
YouTube
Quickies: 5 Things Flutter Can Improve
Wizard Keith drops another Quickie in software engineering today with 5 hot tips to help Flutter improve.
-
Have a more specific software question?
WEBSITE: https://dimensionsoftware.com
LinkedIn: https://www.linkedin.com/in/dimension-software/
-
CRYPTOBOT…
-
Have a more specific software question?
WEBSITE: https://dimensionsoftware.com
LinkedIn: https://www.linkedin.com/in/dimension-software/
-
CRYPTOBOT…
New post on Flutter Dev Google group:
Grouped Listview scrolling and fetching more data
hi, I use grouped listview. I want to load more content and merge them when user scroll down. Is there way to do that ?
August 26, 2020 at 05:24AM by selan.d...@gmail.com
https://ift.tt/32tIhaz
Grouped Listview scrolling and fetching more data
hi, I use grouped listview. I want to load more content and merge them when user scroll down. Is there way to do that ?
August 26, 2020 at 05:24AM by selan.d...@gmail.com
https://ift.tt/32tIhaz
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:
Biometric for Samsung Android can use Face Auth?
Hello, Flutter-dev group I research about local auth for Samsung Android. I found only finger print. How to use Face auth like iPhone (FaceID) or Iris. Thank you.
August 26, 2020 at 05:29AM by Krutpong Khunthep
https://ift.tt/2Ex7EQy
Biometric for Samsung Android can use Face Auth?
Hello, Flutter-dev group I research about local auth for Samsung Android. I found only finger print. How to use Face auth like iPhone (FaceID) or Iris. Thank you.
August 26, 2020 at 05:29AM by Krutpong Khunthep
https://ift.tt/2Ex7EQy
New post on /r/flutterdev subreddit:
The Best way to learn SQFLITE in Fluter Development 🔥| Beginner to Advanced in Just 30 Mins Video
https://youtu.be/Da2IfcEe90E
August 26, 2020 at 07:53AM by SnippetCoder
https://ift.tt/3gum413
The Best way to learn SQFLITE in Fluter Development 🔥| Beginner to Advanced in Just 30 Mins Video
https://youtu.be/Da2IfcEe90E
August 26, 2020 at 07:53AM by SnippetCoder
https://ift.tt/3gum413
YouTube
The Best way to learn SQFLITE in Flutter Development 🔥| Beginner to Advanced in Just 30 Mins Video
In this video, we learn The Best way to learn SQFLITE in Flutter Development. Beginner to Advanced in Just 30 Mins Video.
📄Source Code Video
https://github.com/SnippetCoders/flutter_sqlite
📎Flutter Plugins
https://pub.dev/packages/image_picker
https://…
📄Source Code Video
https://github.com/SnippetCoders/flutter_sqlite
📎Flutter Plugins
https://pub.dev/packages/image_picker
https://…
New post on /r/flutterdev subreddit:
McDonald's Touch Interface Concept App - Flutter UI - Speed Code
https://youtu.be/UGKEPnhHGFo
August 26, 2020 at 05:36AM by AllAboutFlutter
https://ift.tt/3gw4DgC
McDonald's Touch Interface Concept App - Flutter UI - Speed Code
https://youtu.be/UGKEPnhHGFo
August 26, 2020 at 05:36AM by AllAboutFlutter
https://ift.tt/3gw4DgC
YouTube
McDonald's Touch Interface Concept App - Flutter UI - Speed Code
Nice, clean and modern McDonald's Touch Interface Concept App in Flutter
Inspiration
https://dribbble.com/shots/7049291-McDonald-s-Touch-Interface-Concept
GitHub Source Code
https://github.com/gerfagerfa/mcdonalds
Social Media
GitHub: https://github.com/gerfagerfa…
Inspiration
https://dribbble.com/shots/7049291-McDonald-s-Touch-Interface-Concept
GitHub Source Code
https://github.com/gerfagerfa/mcdonalds
Social Media
GitHub: https://github.com/gerfagerfa…
New post on Flutter Dev Google group:
Flutter/Dart TLS v1.3
Hi, I am not sure whether I ask this question in the right group but here it is: Is there support for *TLS v1.3* in a flutter app (mobile, no web)? If yes how can I activate it? Thanks for your answers. Michael
August 26, 2020 at 11:36AM by Michael Szediwy
https://ift.tt/2YBBslZ
Flutter/Dart TLS v1.3
Hi, I am not sure whether I ask this question in the right group but here it is: Is there support for *TLS v1.3* in a flutter app (mobile, no web)? If yes how can I activate it? Thanks for your answers. Michael
August 26, 2020 at 11:36AM by Michael Szediwy
https://ift.tt/2YBBslZ
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:
Flutter Connect Four Game - Diagonals & Completion - 05
https://www.youtube.com/watch?v=Pp5roVNGQsA&feature=share
August 26, 2020 at 12:16PM by syntacops
https://ift.tt/2EEFLGk
Flutter Connect Four Game - Diagonals & Completion - 05
https://www.youtube.com/watch?v=Pp5roVNGQsA&feature=share
August 26, 2020 at 12:16PM by syntacops
https://ift.tt/2EEFLGk
YouTube
Flutter Connect Four Game - Diagonals & Completion - 05
To finalize our Flutter Connect Four Game we implement the logic which checks the diagonals for a connection of four coins of the same color. Additionally we make sure that whenever the board is completely filled we reset the game and inform the player's…
New post on /r/flutterdev subreddit:
Dart/Flutter - How to solve naming conflict or ambiguous import - Coflutter
https://ift.tt/3guzMRE
August 26, 2020 at 01:40PM by tranhuyphuc
https://ift.tt/2Ez44oT
Dart/Flutter - How to solve naming conflict or ambiguous import - Coflutter
https://ift.tt/3guzMRE
August 26, 2020 at 01:40PM by tranhuyphuc
https://ift.tt/2Ez44oT
Coflutter
Dart/Flutter - How to solve naming conflict or ambiguous import - Coflutter
Solutions to solve naming conflict or ambiguous import in Dart/Flutter, using hide and as keyword.
New post on Flutter Dev Google group:
Websocket in flutter with SSL and subscribe to a topic
Hi all I am tying to implement a code with flutter to connect a sever using webscoket but i can't get a link to subscribe a topic as well as implement ssl to connect.
August 26, 2020 at 01:32PM by Bichitra Pradhan
https://ift.tt/32uqQ9B
Websocket in flutter with SSL and subscribe to a topic
Hi all I am tying to implement a code with flutter to connect a sever using webscoket but i can't get a link to subscribe a topic as well as implement ssl to connect.
August 26, 2020 at 01:32PM by Bichitra Pradhan
https://ift.tt/32uqQ9B
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:
Create Bottom Modal Sheet with Scrollable Form
https://ift.tt/2D0sdV3
August 26, 2020 at 01:49PM by heigzir
https://ift.tt/31vIKJO
Create Bottom Modal Sheet with Scrollable Form
https://ift.tt/2D0sdV3
August 26, 2020 at 01:49PM by heigzir
https://ift.tt/31vIKJO
Refactord
Flutter Modal Bottom Sheet
Learn to create a fully functional modal bottom sheet with a scrollable form and correct padding when the keyboard is active.
New post on /r/flutterdev subreddit:
Issue of AVD Manager (Unable to locate adb)
Hello i am new to flutter and android studio and i have got this error. I have already reinstall the platform-tool in SDK folder and the error still there. Is that concern with android studio newer version on mac? or is there any other way to try?
August 26, 2020 at 03:19PM by AungHeinHtet_3
https://ift.tt/2D0ZxLv
Issue of AVD Manager (Unable to locate adb)
Hello i am new to flutter and android studio and i have got this error. I have already reinstall the platform-tool in SDK folder and the error still there. Is that concern with android studio newer version on mac? or is there any other way to try?
August 26, 2020 at 03:19PM by AungHeinHtet_3
https://ift.tt/2D0ZxLv
reddit
Issue of AVD Manager (Unable to locate adb)
Hello i am new to flutter and android studio and i have got this error. I have already reinstall the platform-tool in SDK folder and the error ...
New post on Flutter Dev Google group:
is possible open widget just one time without using flag ( like boolean )
i made a widget that opens when satisfying some condition. but that condition keeps maintained and popup open continuously . how can i open just one time without using flag?
August 26, 2020 at 03:41PM by Jaesang Song
https://ift.tt/32sOBir
is possible open widget just one time without using flag ( like boolean )
i made a widget that opens when satisfying some condition. but that condition keeps maintained and popup open continuously . how can i open just one time without using flag?
August 26, 2020 at 03:41PM by Jaesang Song
https://ift.tt/32sOBir
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.