New post on /r/flutterdev subreddit:
Package to paginate Firestore data with just 2️ attributes ⚡️ paginate_firestore v0.1.0
https://ift.tt/2YhcSYd
April 29, 2020 at 07:34PM by excogitatr
https://ift.tt/35eGLKe
Package to paginate Firestore data with just 2️ attributes ⚡️ paginate_firestore v0.1.0
https://ift.tt/2YhcSYd
April 29, 2020 at 07:34PM by excogitatr
https://ift.tt/35eGLKe
GitHub
excogitatr/paginate_firestore
A flutter package to simplify pagination with firestore data 🗃 - excogitatr/paginate_firestore
New post on /r/flutterdev subreddit:
COVID19 Tracker App - A dedication to my friend
https://ift.tt/2W9KVin
April 29, 2020 at 07:51PM by m_hamzashakeel
https://ift.tt/3bO4VOp
COVID19 Tracker App - A dedication to my friend
https://ift.tt/2W9KVin
April 29, 2020 at 07:51PM by m_hamzashakeel
https://ift.tt/3bO4VOp
GitHub
m-hamzashakeel/Covid19-Tracker-App
It's a very simple COVID-19 Tracker app. Contribute to m-hamzashakeel/Covid19-Tracker-App development by creating an account on GitHub.
New post on /r/flutterdev subreddit:
Control ListView items height.
Hello guys!I'm trying to learn Flutter and got a little question that I couldn't find an answer.I have a horizontal ListView with cards.The ListView is controlling the cards' height, and I can't figure out how to change this.I want the list view to have a height of 250 for example, and the cards to have the height of 160.
April 29, 2020 at 08:21PM by ZwapDawg
https://ift.tt/35gN7J1
Control ListView items height.
Hello guys!I'm trying to learn Flutter and got a little question that I couldn't find an answer.I have a horizontal ListView with cards.The ListView is controlling the cards' height, and I can't figure out how to change this.I want the list view to have a height of 250 for example, and the cards to have the height of 160.
April 29, 2020 at 08:21PM by ZwapDawg
https://ift.tt/35gN7J1
reddit
Control ListView items height.
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Up to 6,000 minutes free Flutter CI per month on Bitrise right now (for Android, as well as iOS builds)
https://ift.tt/2XORb1s
April 29, 2020 at 09:09PM by HHendrik
https://ift.tt/3cWrKzx
Up to 6,000 minutes free Flutter CI per month on Bitrise right now (for Android, as well as iOS builds)
https://ift.tt/2XORb1s
April 29, 2020 at 09:09PM by HHendrik
https://ift.tt/3cWrKzx
Bitrise Blog
Changes to Bitrise - COVID 19 support
Our priority during the circumstances is supporting the mobile development community. These are the steps we're taking to help.
New post on Flutter Dev Google group:
in_app_purchase listener not getting called on iOS
I have pretty much replicated the code from the in_app_purchase package example. However, on iOS the purchaseUpdated listener never gets called. Same code works fine on Android. I've tried running both on the emulator and on actual devices using TestFlight and after running the `buyNonConsumable
April 29, 2020 at 09:48PM by Jeff Jorczak
https://ift.tt/3bPQ1ab
in_app_purchase listener not getting called on iOS
I have pretty much replicated the code from the in_app_purchase package example. However, on iOS the purchaseUpdated listener never gets called. Same code works fine on Android. I've tried running both on the emulator and on actual devices using TestFlight and after running the `buyNonConsumable
April 29, 2020 at 09:48PM by Jeff Jorczak
https://ift.tt/3bPQ1ab
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:
[[Error]] CreateProcessW failed 5
I am new to Flutter, so I just tried to create "New Flutter Project" and I tried to run the "default" code to test it, and I had this error (check attachments). However, "flutter doctor" says I don't have any issues.
April 29, 2020 at 10:01PM by Ahmad Rashid
https://ift.tt/2SmHN1L
[[Error]] CreateProcessW failed 5
I am new to Flutter, so I just tried to create "New Flutter Project" and I tried to run the "default" code to test it, and I had this error (check attachments). However, "flutter doctor" says I don't have any issues.
April 29, 2020 at 10:01PM by Ahmad Rashid
https://ift.tt/2SmHN1L
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:
MainAxisAlignment not working
I post the question in stackoverflow please help https://ift.tt/2Sk1WFM
April 29, 2020 at 10:09PM by Kamran Ali
https://ift.tt/3aOeiw7
MainAxisAlignment not working
I post the question in stackoverflow please help https://ift.tt/2Sk1WFM
April 29, 2020 at 10:09PM by Kamran Ali
https://ift.tt/3aOeiw7
Stack Overflow
MainAxisAlignment under SingleChildScrollView is not working
I developed a login screen in which first i get the render flex error when i open the keyboard so for that i wrap my widgets in SingleChildScrollView, but after that mainAxisAlignment of Column is ...
New post on /r/flutterdev subreddit:
Feasible in Flutter? Board game with ad banners using native ad SDKs
I'm an indie dev currently maintaining 2 native versions (in Java and Objective C... I know, I got lazy these past few years) of a 2D mobile board game, first released in 2013 but still relatively popular.Having to code the UI twice is really painful, and is one of the reasons I'm not frequently adding new features.But the ads integration is fully optimized and has been providing steady revenue over the years.I'm basically showing banners and interstitials, using AdMob mediation, and a few other ad networks.I am planning on making an online variant of this game, and after a lot of researching I ended up with the following shortlist of frameworks to develop this new app:1/ Flutter2/ Unity3/ Native Android + Native iOS (reusing some of the legacy code)I have only played with it for a day, but Flutter really is my favorite for now, because it makes lighter APKs/IPAs, has better tooling, IDE, community etc. And allows to use some native code when needed.But it's far from perfect, and I think I'll have to do some convoluted things to keep an optimized monetization. Indeed, some of the major ad networks I use have no Flutter compatible SDK or plugins.As the ads integration with the rest of the app is very basic (banner on top of the game Activity, full screen interstitial after game over), I should be able to keep the native Android/iOS SDKs to load and display the ads in native Views/UIViews. While having the rest of the app in Flutter (using FlutterFragment or FragmentView, in Android).For the main game screen, this basically means a native view for the banner, above a FlutterView (or fragment?)Does this sound feasible or I am expecting too much from the "add-to-app" capabilities of Flutter?Is this a bad idea?
April 29, 2020 at 11:10PM by dasebasto
https://ift.tt/35hG5Us
Feasible in Flutter? Board game with ad banners using native ad SDKs
I'm an indie dev currently maintaining 2 native versions (in Java and Objective C... I know, I got lazy these past few years) of a 2D mobile board game, first released in 2013 but still relatively popular.Having to code the UI twice is really painful, and is one of the reasons I'm not frequently adding new features.But the ads integration is fully optimized and has been providing steady revenue over the years.I'm basically showing banners and interstitials, using AdMob mediation, and a few other ad networks.I am planning on making an online variant of this game, and after a lot of researching I ended up with the following shortlist of frameworks to develop this new app:1/ Flutter2/ Unity3/ Native Android + Native iOS (reusing some of the legacy code)I have only played with it for a day, but Flutter really is my favorite for now, because it makes lighter APKs/IPAs, has better tooling, IDE, community etc. And allows to use some native code when needed.But it's far from perfect, and I think I'll have to do some convoluted things to keep an optimized monetization. Indeed, some of the major ad networks I use have no Flutter compatible SDK or plugins.As the ads integration with the rest of the app is very basic (banner on top of the game Activity, full screen interstitial after game over), I should be able to keep the native Android/iOS SDKs to load and display the ads in native Views/UIViews. While having the rest of the app in Flutter (using FlutterFragment or FragmentView, in Android).For the main game screen, this basically means a native view for the banner, above a FlutterView (or fragment?)Does this sound feasible or I am expecting too much from the "add-to-app" capabilities of Flutter?Is this a bad idea?
April 29, 2020 at 11:10PM by dasebasto
https://ift.tt/35hG5Us
reddit
r/FlutterDev - Feasible in Flutter? Board game with ad banners using native ad SDKs
10 votes and 1 comment so far on Reddit
New post on /r/flutterdev subreddit:
How my stock app in Flutter reached $1k MRR in 6 months
https://ift.tt/3auTxoZ
April 29, 2020 at 11:04PM by satvikpendem
https://ift.tt/2Yem7IV
How my stock app in Flutter reached $1k MRR in 6 months
https://ift.tt/3auTxoZ
April 29, 2020 at 11:04PM by satvikpendem
https://ift.tt/2Yem7IV
New post on /r/flutterdev subreddit:
Realtime meme classification using flutter and tf lite
https://youtu.be/V_UyfkKM2BY
April 30, 2020 at 02:34AM by patatojackfrost
https://ift.tt/2VPqmZW
Realtime meme classification using flutter and tf lite
https://youtu.be/V_UyfkKM2BY
April 30, 2020 at 02:34AM by patatojackfrost
https://ift.tt/2VPqmZW
YouTube
Meme Classifier Mobile App Using Machine Learning and Flutter (Part 2)
Part 2 of meme classifier using Tensorflow and Flutter
please like share and subscribe it keeps me motivated to make such videos
Contact me : https://abdulrashid.dev
Part 1 : https://www.youtube.com/watch?v=MuNuUu9o8uI
Code : https://github.com/AbdulR…
please like share and subscribe it keeps me motivated to make such videos
Contact me : https://abdulrashid.dev
Part 1 : https://www.youtube.com/watch?v=MuNuUu9o8uI
Code : https://github.com/AbdulR…
New post on /r/flutterdev subreddit:
video_player package giving a 403 response code
So I am using video_player to play an online video I got from a site but I get 403 response code. I can copy the link, paste it on my chrome on my phone and it will load the video. Any thoughts on why the error?
April 30, 2020 at 05:25AM by SilentK213
https://ift.tt/2yafi08
video_player package giving a 403 response code
So I am using video_player to play an online video I got from a site but I get 403 response code. I can copy the link, paste it on my chrome on my phone and it will load the video. Any thoughts on why the error?
April 30, 2020 at 05:25AM by SilentK213
https://ift.tt/2yafi08
reddit
video_player package giving a 403 response code
A subreddit for Google's portable UI framework.
New post on /r/flutterdev subreddit:
Master teases 3 min survey Still NEED YOUR Help
Thanks Those who helped with survey, but I Only have ~ 50 participants! I Really need more so it is +/- ok.
Please spend 3 min doing fast and easy survey! Thank You!https://docs.google.com/forms/d/e/1FAIpQLScZ4AHN5DD2Oqn9ZYrlVJb39RDOHFbblAs0ttDeZgk38nQjvw/viewform?usp=sf_link
April 30, 2020 at 05:10AM by Uzis12
https://ift.tt/2KNAEn0
Master teases 3 min survey Still NEED YOUR Help
Thanks Those who helped with survey, but I Only have ~ 50 participants! I Really need more so it is +/- ok.
Please spend 3 min doing fast and easy survey! Thank You!https://docs.google.com/forms/d/e/1FAIpQLScZ4AHN5DD2Oqn9ZYrlVJb39RDOHFbblAs0ttDeZgk38nQjvw/viewform?usp=sf_link
April 30, 2020 at 05:10AM by Uzis12
https://ift.tt/2KNAEn0
Google Docs
Cross-Platform Framework Survey
Hello I am Ģirts Menģels. As part of my Master teases I am doing survey about Cross-Platform framework. It shouldn’t take more than 3 min. Appreciate Your help. Survey is anonym.
New post on /r/flutterdev subreddit:
Flutter tips No 26. Implementing Hero Animation in Flutter is easy
https://twitter.com/erluxman/status/1255726829316591617
April 30, 2020 at 07:21AM by erluxman
https://ift.tt/2VPRQyA
Flutter tips No 26. Implementing Hero Animation in Flutter is easy
https://twitter.com/erluxman/status/1255726829316591617
April 30, 2020 at 07:21AM by erluxman
https://ift.tt/2VPRQyA
Twitter
Laxman
What to make Widget/Image fly from one screen to another? Wrap the widget with Hero with common "tag" value. 🚨❌don't use static string as a tag for dymaic UI like List. use a value like title or id try on Codepen https://t.co/SlpPHdFVKI #day26 #100DaysofFlutter…
New post on Flutter Dev Google group:
ECONNREFUSED Error when trying to run Firebase pubsub scheduled cloud function on shell
Hello, Any help is appreciated... https://ift.tt/2KGS18W
April 30, 2020 at 07:41AM by Mutlu Şimşek
https://ift.tt/2YjAYSr
ECONNREFUSED Error when trying to run Firebase pubsub scheduled cloud function on shell
Hello, Any help is appreciated... https://ift.tt/2KGS18W
April 30, 2020 at 07:41AM by Mutlu Şimşek
https://ift.tt/2YjAYSr
Stack Overflow
ECONNREFUSED Error when trying to run Firebase pubsub scheduled cloud function on shell
I am trying to run a pubsub.schedule function on Firebase emulator. I tried to follow the instructions in the following links.
https://github.com/firebase/firebase-tools/issues/1748#issuecomment-
https://github.com/firebase/firebase-tools/issues/1748#issuecomment-
New post on Flutter Dev Google group:
麻烦把我从邮件组中删除,谢谢
April 30, 2020 at 08:02AM by 叶子
https://ift.tt/2VNuglO
麻烦把我从邮件组中删除,谢谢
April 30, 2020 at 08:02AM by 叶子
https://ift.tt/2VNuglO
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:
Which IDE do you use for flutter and why?
I have been using VS Code for quite sometime and after seeing IntelliJ IDEA with all it's features I am thinking of switching to it. And should I even switch IDE just based on the features it provides?View Poll
April 30, 2020 at 09:34AM by thisis_dc
https://ift.tt/2Smom97
Which IDE do you use for flutter and why?
I have been using VS Code for quite sometime and after seeing IntelliJ IDEA with all it's features I am thinking of switching to it. And should I even switch IDE just based on the features it provides?View Poll
April 30, 2020 at 09:34AM by thisis_dc
https://ift.tt/2Smom97
New post on /r/flutterdev subreddit:
What next? Is there a future for Flutter?
So I just finished course by Angela Yu and I'm wondering what to do next. Or should I even invest more time in Flutter? I looked at some more advanced topics like BLoC. And I'm kinda confused on how to use it, and what is the right way (with bloc library or without). Also what is the right resource for me to learn BLoC, I just like how there is no need for setState, I got sick of it. I used Reso Coder's youtube channel for trying out BLoC pattern is he good? I don't really now if my learning resources are using good practices..Now the second topic is, the future of Flutter. I have some experience with native Android and I can say things are so much easier in Flutter. But again should I be doing something easier? Native development is still the main way of making apps. And it will be, always. I really like flutter, it just makes more sense to me than Java/Kotlin. But should I put all my effort in technology that no one uses? All the major companies still use native, I live in a small country and here thats the case too. No jobs for flutter. Of course I could find something freelance, but sites like UpWork are just so ungrateful. People there expect top quality products for small amount of money.How do you cope with these thoughts? Flutter could get cancelled tomorrow and all my knowledge and time would go to waste. Why would they even base it on Dart? Never heard of that language before Flutter. If they based it on Kotlin it could also be native way and I think it would be more popular. But they chose some god forgotten language, I don't mind Dart, syntax is familiar, works fine for me. But Flutter needs publicity and if it was based on more popular language, Flutter itself would be more popular. For example its not the same when you tell someone Flutter is based on Dart and Flutter is based on Java/Kotlin..These are just my thoughts, I am probably not right about most things said here, but these are my concerns. I really want to master Flutter and make living out of it one day...
April 30, 2020 at 10:44AM by itsdjoki
https://ift.tt/2VRLjDw
What next? Is there a future for Flutter?
So I just finished course by Angela Yu and I'm wondering what to do next. Or should I even invest more time in Flutter? I looked at some more advanced topics like BLoC. And I'm kinda confused on how to use it, and what is the right way (with bloc library or without). Also what is the right resource for me to learn BLoC, I just like how there is no need for setState, I got sick of it. I used Reso Coder's youtube channel for trying out BLoC pattern is he good? I don't really now if my learning resources are using good practices..Now the second topic is, the future of Flutter. I have some experience with native Android and I can say things are so much easier in Flutter. But again should I be doing something easier? Native development is still the main way of making apps. And it will be, always. I really like flutter, it just makes more sense to me than Java/Kotlin. But should I put all my effort in technology that no one uses? All the major companies still use native, I live in a small country and here thats the case too. No jobs for flutter. Of course I could find something freelance, but sites like UpWork are just so ungrateful. People there expect top quality products for small amount of money.How do you cope with these thoughts? Flutter could get cancelled tomorrow and all my knowledge and time would go to waste. Why would they even base it on Dart? Never heard of that language before Flutter. If they based it on Kotlin it could also be native way and I think it would be more popular. But they chose some god forgotten language, I don't mind Dart, syntax is familiar, works fine for me. But Flutter needs publicity and if it was based on more popular language, Flutter itself would be more popular. For example its not the same when you tell someone Flutter is based on Dart and Flutter is based on Java/Kotlin..These are just my thoughts, I am probably not right about most things said here, but these are my concerns. I really want to master Flutter and make living out of it one day...
April 30, 2020 at 10:44AM by itsdjoki
https://ift.tt/2VRLjDw
reddit
What next? Is there a future for Flutter?
So I just finished course by Angela Yu and I'm wondering what to do next. Or should I even invest more time in Flutter? I looked at some more...
New post on /r/flutterdev subreddit:
What is the difference between all those plethora of BloC packages
It gets one confuse having BloC, flutter_blocs, flutter_bloc_pattern etc. - plethora BLoC packages.?
Same way RxDart sometimes offered as compliment to BLoc but others gets used itself alone?
Want some expert to shed some light on which one should go first to learn?
April 30, 2020 at 11:04AM by Jaams-Adams
https://ift.tt/2KL8skH
What is the difference between all those plethora of BloC packages
It gets one confuse having BloC, flutter_blocs, flutter_bloc_pattern etc. - plethora BLoC packages.?
Same way RxDart sometimes offered as compliment to BLoc but others gets used itself alone?
Want some expert to shed some light on which one should go first to learn?
April 30, 2020 at 11:04AM by Jaams-Adams
https://ift.tt/2KL8skH
reddit
What is the difference between all those plethora of BloC packages
It gets one confuse having BloC, flutter\_blocs, flutter\_bloc\_pattern etc. - plethora BLoC packages.? Same way RxDart sometimes offered as...
New post on /r/flutterdev subreddit:
Landscape mode - is this being ignored?
Often I will look at examples and plugins listed on this reddit site, and think "hey that looks good, let's load the example and give it a try". I think 100% of the times (I apologise in advance if I have missed one that works) I look at the display on the phone and then turn the phone round so that it is in landscape mode and the layout is terrible. Often you have to scroll up and down when there is a lot of space not being used.Why am I so obsessed about landscape mode? Simply because the first mobile app I released I designed in portrait mode, and then received loads of complaints from users saying the app did not work in landscape mode. Basically, the lesson was to expect your users to do things you would not do. So now I ensure my flutter pages look good in portrait and landscape mode often requiring two sperate layouts.So what are your views? Should Flutter be designed only in portrait mode, which seems to be the default approach?
April 30, 2020 at 11:43AM by Alex54J
https://ift.tt/2SnQnND
Landscape mode - is this being ignored?
Often I will look at examples and plugins listed on this reddit site, and think "hey that looks good, let's load the example and give it a try". I think 100% of the times (I apologise in advance if I have missed one that works) I look at the display on the phone and then turn the phone round so that it is in landscape mode and the layout is terrible. Often you have to scroll up and down when there is a lot of space not being used.Why am I so obsessed about landscape mode? Simply because the first mobile app I released I designed in portrait mode, and then received loads of complaints from users saying the app did not work in landscape mode. Basically, the lesson was to expect your users to do things you would not do. So now I ensure my flutter pages look good in portrait and landscape mode often requiring two sperate layouts.So what are your views? Should Flutter be designed only in portrait mode, which seems to be the default approach?
April 30, 2020 at 11:43AM by Alex54J
https://ift.tt/2SnQnND
reddit
Landscape mode - is this being ignored?
Often I will look at examples and plugins listed on this reddit site, and think "hey that looks good, let's load the example and give it a try". I...
New post on Flutter Dev Google group:
Flutter design
I'm designing an application where in I display list of trucks and each truck contains multiple shipments. The trucks list and shipments within are returned by as JSON from REST API. Some of the attributes of truck and shipment can be changed by user(but not committed to backed rest server), How
April 30, 2020 at 01:08PM by Md Iqbal
https://ift.tt/3aPSIHB
Flutter design
I'm designing an application where in I display list of trucks and each truck contains multiple shipments. The trucks list and shipments within are returned by as JSON from REST API. Some of the attributes of truck and shipment can be changed by user(but not committed to backed rest server), How
April 30, 2020 at 01:08PM by Md Iqbal
https://ift.tt/3aPSIHB
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:
Networking in Flutter - Quick guide
https://medium.com/@thomas.middel/networking-in-flutter-quick-guide-c491819a64f0
April 30, 2020 at 01:15PM by thomasmiddel
https://ift.tt/2zK5bje
Networking in Flutter - Quick guide
https://medium.com/@thomas.middel/networking-in-flutter-quick-guide-c491819a64f0
April 30, 2020 at 01:15PM by thomasmiddel
https://ift.tt/2zK5bje
Medium
Networking in Flutter — Quick guide
When doing mobile development it’s inevitable: using an API. How can we consume those APIs nicely in Flutter? We managed to find a pretty…