New post on Flutter Dev Google group:
what/who are those 16 contacts in the .gradle caches user-id.text ?
user-id.text: ᨀ畺电慱穲橣㍨桴朶㉫穩硰硱楲 NUL SUB zu5uqarzcjh3th6gk2izpxqxri
April 17, 2019 at 10:42PM by Bened
http://bit.ly/2ZhBL4i
what/who are those 16 contacts in the .gradle caches user-id.text ?
user-id.text: ᨀ畺电慱穲橣㍨桴朶㉫穩硰硱楲 NUL SUB zu5uqarzcjh3th6gk2izpxqxri
April 17, 2019 at 10:42PM by Bened
http://bit.ly/2ZhBL4i
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 in Practice - Tabs & TabBar View
https://www.youtube.com/watch?v=omZ9ge1ZRUI&feature=youtu.be
April 18, 2019 at 12:09AM by zaiste
http://bit.ly/2KOCneo
Flutter in Practice - Tabs & TabBar View
https://www.youtube.com/watch?v=omZ9ge1ZRUI&feature=youtu.be
April 18, 2019 at 12:09AM by zaiste
http://bit.ly/2KOCneo
YouTube
Flutter in Practice - E16: Tabs & TabBarView
Flutter in Practice is a free programming course that teaches how to write a mobile application using Flutter framework and Dart programming language. Instea...
New post on /r/flutterdev subreddit:
Plans on removing semicolons (or making them optional) in Dart have been frozen! It must be revived!
http://bit.ly/2GsHNb1
April 18, 2019 at 02:54AM by SocialMammoth
http://bit.ly/2IK2i4a
Plans on removing semicolons (or making them optional) in Dart have been frozen! It must be revived!
http://bit.ly/2GsHNb1
April 18, 2019 at 02:54AM by SocialMammoth
http://bit.ly/2IK2i4a
GitHub
Terminating Tokens · Issue #72 · dart-lang/language
This is a proposed solution #69, optional semicolons. I'm calling it "terminating tokens" to differentiate it from other semicolon insertion rules we might investigate. In...
New post on /r/flutterdev subreddit:
Plans on removing semicolons (or making them optional) in Dart have been frozen! They must be revived!
http://bit.ly/2GsHNb1
April 18, 2019 at 02:57AM by SocialMammoth
http://bit.ly/2XoxBGa
Plans on removing semicolons (or making them optional) in Dart have been frozen! They must be revived!
http://bit.ly/2GsHNb1
April 18, 2019 at 02:57AM by SocialMammoth
http://bit.ly/2XoxBGa
GitHub
Terminating Tokens · Issue #72 · dart-lang/language
This is a proposed solution #69, optional semicolons. I'm calling it "terminating tokens" to differentiate it from other semicolon insertion rules we might investigate. In...
New post on Flutter Dev Google group:
Flick and Drag detector
I'm implementing an app where I want a user to be able to drag an icon to a place but also to flick it in the direction, because the default location is obvious. GestureDetector supports drag starting, ending, during, etc, so I think I can build a flick with that. Can I combine that with the
April 18, 2019 at 04:16AM by Guyren Howe
http://bit.ly/2ZhCaUa
Flick and Drag detector
I'm implementing an app where I want a user to be able to drag an icon to a place but also to flick it in the direction, because the default location is obvious. GestureDetector supports drag starting, ending, during, etc, so I think I can build a flick with that. Can I combine that with the
April 18, 2019 at 04:16AM by Guyren Howe
http://bit.ly/2ZhCaUa
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 Tutorial - Google Sign In with Flutter
https://www.youtube.com/watch?v=NaFI6bVI_NY
April 18, 2019 at 07:05AM by whatsupcoders
http://bit.ly/2IteHdt
Flutter Tutorial - Google Sign In with Flutter
https://www.youtube.com/watch?v=NaFI6bVI_NY
April 18, 2019 at 07:05AM by whatsupcoders
http://bit.ly/2IteHdt
YouTube
Flutter Tutorial - Google Sign In with Flutter
Flutter Tutorial - Google Sign In with Flutter
In this video, I will be showing you how to integrate Google sign-in in your flutter application.
Regarding the Firebase project setup, you can follow the Firestore to Firebase video series https://www.you…
In this video, I will be showing you how to integrate Google sign-in in your flutter application.
Regarding the Firebase project setup, you can follow the Firestore to Firebase video series https://www.you…
New post on /r/flutterdev subreddit:
Flutter animation | Animate a button using animation
http://bit.ly/2V5uBB0
April 18, 2019 at 06:45AM by ishanfx
http://bit.ly/2XkBVpB
Flutter animation | Animate a button using animation
http://bit.ly/2V5uBB0
April 18, 2019 at 06:45AM by ishanfx
http://bit.ly/2XkBVpB
MIGHTY TECHNO
Flutter Button Animation - MIGHTY TECHNO
How to use Flutter tween animation to animate a button when the user interaction happen. Describe animation types,stack widget and more.
New post on /r/flutterdev subreddit:
Managing Bloc state
Ok, lets say you have an app with multiple feeds or lists.For example, hit api and return json:GET /api/posts/hot = {meta: {...}, data:[post,post,post,post...]}}GET /api/posts/new = {meta: {...}, data:[post,post,post,post...]}}// _posts = Map["post_id"] = Post// _postItems = Map["list"] = ["post_id","post_id","post_id"...]How would you handle this with Bloc streams and normalizing data?? What is the best practice for this? How much is too many streams? What should not go inside the stream, like big data?Have a stream of the maps?BehaviorSubject<Map<String,Posts>> _posts;BehaviorSubject<Map<String, List<String>>> _postItems ;Or, map each stream?Map<String, BehaviorSubject<Map<String,Posts>>> _posts;Map<String, BehaviorSubject<List<String>>> _postItems;Thank you, any help would be much appreciated.
April 18, 2019 at 08:08AM by harleydavidsun
http://bit.ly/2Uqz0dk
Managing Bloc state
Ok, lets say you have an app with multiple feeds or lists.For example, hit api and return json:GET /api/posts/hot = {meta: {...}, data:[post,post,post,post...]}}GET /api/posts/new = {meta: {...}, data:[post,post,post,post...]}}// _posts = Map["post_id"] = Post// _postItems = Map["list"] = ["post_id","post_id","post_id"...]How would you handle this with Bloc streams and normalizing data?? What is the best practice for this? How much is too many streams? What should not go inside the stream, like big data?Have a stream of the maps?BehaviorSubject<Map<String,Posts>> _posts;BehaviorSubject<Map<String, List<String>>> _postItems ;Or, map each stream?Map<String, BehaviorSubject<Map<String,Posts>>> _posts;Map<String, BehaviorSubject<List<String>>> _postItems;Thank you, any help would be much appreciated.
April 18, 2019 at 08:08AM by harleydavidsun
http://bit.ly/2Uqz0dk
reddit
r/FlutterDev - Managing Bloc state
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
CRUD OPERATION WITH FIREBASE
http://bit.ly/2v8zB9n
April 18, 2019 at 09:06AM by dvmjoshi
http://bit.ly/2Pho40o
CRUD OPERATION WITH FIREBASE
http://bit.ly/2v8zB9n
April 18, 2019 at 09:06AM by dvmjoshi
http://bit.ly/2Pho40o
GitHub
dvmjoshi/stuff
Crud operation with Firebase . Contribute to dvmjoshi/stuff development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Restart app during integration tests
Im trying to create a large amount of integration tests with the flutter driver.Ideally it would run one test that in turn starts all of the tests.I would like to run these tests independently of each other.Is there a way to make the app restart from scratch before each test?
April 18, 2019 at 09:06AM by Pristine_Comfort
http://bit.ly/2Pho9Be
Restart app during integration tests
Im trying to create a large amount of integration tests with the flutter driver.Ideally it would run one test that in turn starts all of the tests.I would like to run these tests independently of each other.Is there a way to make the app restart from scratch before each test?
April 18, 2019 at 09:06AM by Pristine_Comfort
http://bit.ly/2Pho9Be
reddit
r/FlutterDev - Restart app during integration tests
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
Interactable Gooey slideout menu in Flutter using Flare with SmartFlare package
http://bit.ly/2vd7k16
April 18, 2019 at 08:45AM by Purple_Pizzazz
http://bit.ly/2PiSFL4
Interactable Gooey slideout menu in Flutter using Flare with SmartFlare package
http://bit.ly/2vd7k16
April 18, 2019 at 08:45AM by Purple_Pizzazz
http://bit.ly/2PiSFL4
Medium
Build an Awesome Gooey Slideout menu in Flutter using (Smart)Flare
Build custom gooey animated slideout menu using Flare and Flutter in under 5 minutes.
New post on /r/flutterdev subreddit:
Is this a good practice for larger applications?
I recently found this article: https://medium.com/@dsrenesanse/flutter-architecture-pattern-vms-43c2defec03aIt talks about the "View Mutator State" architecture for applications. At a first glance, this seems a little simpler than the bloc pattern. Has anyone ever used the VMS architecture? Does it have any drawbacks?
April 18, 2019 at 09:42AM by themindstorm
http://bit.ly/2GuSHgh
Is this a good practice for larger applications?
I recently found this article: https://medium.com/@dsrenesanse/flutter-architecture-pattern-vms-43c2defec03aIt talks about the "View Mutator State" architecture for applications. At a first glance, this seems a little simpler than the bloc pattern. Has anyone ever used the VMS architecture? Does it have any drawbacks?
April 18, 2019 at 09:42AM by themindstorm
http://bit.ly/2GuSHgh
New post on Flutter Dev Google group:
A curated list of awesome Flutter libraries and resources
A curated list of awesome Flutter libraries and resources. http://bit.ly/2QnPuAZ
April 18, 2019 at 11:31AM by Frank he
http://bit.ly/2UK2WWA
A curated list of awesome Flutter libraries and resources
A curated list of awesome Flutter libraries and resources. http://bit.ly/2QnPuAZ
April 18, 2019 at 11:31AM by Frank he
http://bit.ly/2UK2WWA
New post on Flutter Dev Google group:
Widgets
Hey! I am new to flutter and have done development in ionic, native android and basic react native. I don't understand the basic structure of a widget can anyone help me out of it. Thanks in Advance
April 18, 2019 at 12:54PM by kViN
http://bit.ly/2KPvKZi
Widgets
Hey! I am new to flutter and have done development in ionic, native android and basic react native. I don't understand the basic structure of a widget can anyone help me out of it. Thanks in Advance
April 18, 2019 at 12:54PM by kViN
http://bit.ly/2KPvKZi
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:
StatelessWidget and StatefulWidget in flutter
http://bit.ly/2V4XSf5
April 18, 2019 at 12:15PM by MSIAN999
http://bit.ly/2DmIOza
StatelessWidget and StatefulWidget in flutter
http://bit.ly/2V4XSf5
April 18, 2019 at 12:15PM by MSIAN999
http://bit.ly/2DmIOza
Medium
StatelessWidget and StatefulWidget in Flutter
App UI developed with Flutter
New post on /r/flutterdev subreddit:
When you compare the Flutter to React Native, what are the biggest upsides and downsides?
First of all, I'm sorry if this is not the right place to ask it. I'm still a newbie in mobile dev.I tried to learn react and i got kinda overwhelmed and confused. Now I'm learning Flutter and I can say that I enjoy it very much. I was wondering what are the biggest differences between Flutter and React Native, what will be my strong and weak points using this framework.Thank you for your answers.
April 18, 2019 at 11:54AM by Mirnish-
http://bit.ly/2VPf70N
When you compare the Flutter to React Native, what are the biggest upsides and downsides?
First of all, I'm sorry if this is not the right place to ask it. I'm still a newbie in mobile dev.I tried to learn react and i got kinda overwhelmed and confused. Now I'm learning Flutter and I can say that I enjoy it very much. I was wondering what are the biggest differences between Flutter and React Native, what will be my strong and weak points using this framework.Thank you for your answers.
April 18, 2019 at 11:54AM by Mirnish-
http://bit.ly/2VPf70N
reddit
r/FlutterDev - When you compare the Flutter to React Native, what are the biggest upsides and downsides?
0 votes and 2 comments so far on Reddit
New post on /r/flutterdev subreddit:
Swift vs Flutter - A side by side comparison for iOS development [Includes infographic]
http://bit.ly/2IEqjKc
April 18, 2019 at 11:26AM by Gigatronbot
http://bit.ly/2Dm39Vh
Swift vs Flutter - A side by side comparison for iOS development [Includes infographic]
http://bit.ly/2IEqjKc
April 18, 2019 at 11:26AM by Gigatronbot
http://bit.ly/2Dm39Vh
Codemagic blog
Swift vs Flutter - A side by side comparison for iOS development [Infographic]
What difference Swift and Flutter make when it comes to iOS application development.
New post on /r/flutterdev subreddit:
Android Q Scoped storage
With the new restrictions in Android, will Dart's io:File be butchered too? If yes, what are the alternatives? Write a channel that works with scoped storage?
April 18, 2019 at 02:43PM by ArmoredPancake
http://bit.ly/2GurTN5
Android Q Scoped storage
With the new restrictions in Android, will Dart's io:File be butchered too? If yes, what are the alternatives? Write a channel that works with scoped storage?
April 18, 2019 at 02:43PM by ArmoredPancake
http://bit.ly/2GurTN5
reddit
r/FlutterDev - Android Q Scoped storage
0 votes and 0 comments so far on Reddit
New post on /r/flutterdev subreddit:
38 Uploading Images to firebase (Flutter e-commerce): part 1
https://youtu.be/VECgIO5Hnbc
April 18, 2019 at 04:49PM by kibatheseven
http://bit.ly/2XiPUfy
38 Uploading Images to firebase (Flutter e-commerce): part 1
https://youtu.be/VECgIO5Hnbc
April 18, 2019 at 04:49PM by kibatheseven
http://bit.ly/2XiPUfy
YouTube
38 Uploading Images to firebase (Flutter e-commerce): part 1
=========SUPPORT THE CHANNEL ============
paypal: https://www.paypal.me/santosenoque
paytm: 9148930270
========ADMIN SIDE APP CODE =================
https://github.com/Santos-Enoque/admin_side_flutter_ecommerce_app/tree/product_details
=========USER SIDE…
paypal: https://www.paypal.me/santosenoque
paytm: 9148930270
========ADMIN SIDE APP CODE =================
https://github.com/Santos-Enoque/admin_side_flutter_ecommerce_app/tree/product_details
=========USER SIDE…
New tweet from FlutterDev:
This week on the #BoringShow @bouncingsheep and special guest @_havenn, Engineer and Evangelist at @Square, use the Square In-App Payments SDK Flutter Plugin to add in-app 💳 payments
to a demo shopping app.
Tune in 📺 here → https://t.co/BmidfBvCXV pic.twitter.com/Zv6OMWjtj6— Flutter (@FlutterDev) April 18, 2019
April 18, 2019 at 05:38PM
http://twitter.com/FlutterDev/status/1118901641011503104
This week on the #BoringShow @bouncingsheep and special guest @_havenn, Engineer and Evangelist at @Square, use the Square In-App Payments SDK Flutter Plugin to add in-app 💳 payments
to a demo shopping app.
Tune in 📺 here → https://t.co/BmidfBvCXV pic.twitter.com/Zv6OMWjtj6— Flutter (@FlutterDev) April 18, 2019
April 18, 2019 at 05:38PM
http://twitter.com/FlutterDev/status/1118901641011503104
Twitter
#boringshow hashtag on Twitter
38m ago @FlutterDev tweeted: "📺 The #BoringShow is back! 📺
Join @f.." - read what others are saying and join the conversation.
Join @f.." - read what others are saying and join the conversation.
New tweet from FlutterDev:
This week on the #BoringShow @bouncingsheep and special guest @_havenn, Engineer and Evangelist at @Square, use the Square In-App Payments SDK Flutter Plugin to add in-app 💳 payments to a demo shopping app.
Tune in 📺 here → https://t.co/BmidfBNdPt pic.twitter.com/hyI1JTcQjL— Flutter (@FlutterDev) April 18, 2019
April 18, 2019 at 05:40PM
http://twitter.com/FlutterDev/status/1118902129450569728
This week on the #BoringShow @bouncingsheep and special guest @_havenn, Engineer and Evangelist at @Square, use the Square In-App Payments SDK Flutter Plugin to add in-app 💳 payments to a demo shopping app.
Tune in 📺 here → https://t.co/BmidfBNdPt pic.twitter.com/hyI1JTcQjL— Flutter (@FlutterDev) April 18, 2019
April 18, 2019 at 05:40PM
http://twitter.com/FlutterDev/status/1118902129450569728
Twitter
#boringshow hashtag on Twitter
38m ago @FlutterDev tweeted: "📺 The #BoringShow is back! 📺
Join @f.." - read what others are saying and join the conversation.
Join @f.." - read what others are saying and join the conversation.