Flutter Heroes
26K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on /r/flutterdev subreddit:

My First Real Flutter PWA App is live now
My First Real Flutter PWA App is live now. You can install it on your phones or desktop. Give it a try.https://flutterkumar.web.appTutorial Coming Soon on MTECHVIRAL YOUTUBE

January 17, 2020 at 12:57PM by imthepk
https://ift.tt/2R1L71R
New post on Flutter Dev Google group:

How open particular flutter apps screen when click on deep link or universal link from browser ??
*How open particular flutter apps screen when click on deep link or universal link from browser ??*

January 17, 2020 at 02:34PM by Yugal Jain
https://ift.tt/2sCBNIy
New post on /r/flutterdev subreddit:

Best State Handling approach or Plugin
Hey, i’m building an app using flutter that will heavily rely on the google maps plugin to provide directions between my university’s two campuses. Driving, transit, walking directions. Also i’m implementing a class schedule inside the app based on google calendar.My question since i’m sort of a beginner using flutter, how would someone go in handling all the states in the app to prevent crashing and the constant Map refresh?Thanks everyone!

January 17, 2020 at 04:07PM by michelrahme
https://ift.tt/2ucfpGs
New post on Flutter Dev Google group:

Forcing Focus on Widget When Using Talkback / VoiceOver
I'm trying to improve the accessibility of my app right now by testing it with Talkback / Voiceover. My issue is that I have a widget that sits in a stack and takes over the whole screen. It's controlled by a streambuilder and is activated when a user taps a particular button. Here's the

January 17, 2020 at 04:56PM by Matthew Jones
https://ift.tt/2TEVxq9
New post on /r/flutterdev subreddit:

Firebase Login Flow
I recently built an app with flutter that uses Firebase Authentication with Google, and it was all good except for one thing. In that app, I put the login page as the initial route in main MaterialApp Route and I thought it was correct logically. But now, the login page is showing (flashing) a bit even after the login was done, everytime I open the app. It was not that long, it was quite quick in just a flash, but it was annoying.How can i possibly fix the issue ?

January 17, 2020 at 05:21PM by frencojobs
https://ift.tt/364PAFn
New post on /r/flutterdev subreddit:

Any ideas on how to approach a coloring book type app?
I hope this fits under a discussion and not a support forum, if the mods don't think so I apologize. I download some coloring apps for my kids and these apps are terrible! They are almost predatory in their in app purchases and ads for small children so I thought I should build my own for my kids. My background is in native app development but I have been switching over to flutter in my last 6 - 9 months and would love to build something that is actually fun for kids to use that is cross platform. I have been searching for some way to approach this but I haven't really come up with any good solutions on how implement a coloring book functionality. Anyway has anyone see any widgets that would work out for something like this: https://play.google.com/store/apps/details?id=com.fungamesforfree.colorfy&hl=en_US or this https://play.google.com/store/apps/details?id=com.pixel.art.coloring.color.number&hl=en_US (these are not my apps just used for demo purposes)

January 17, 2020 at 09:18PM by bigBearRat
https://ift.tt/2TBgO3M
New post on /r/flutterdev subreddit:

Logic for using pagination in listview
So I am currently developing a flutter app that uses a Django Rest Framework backend. So far everything has been great but I am confused about implementing pagination in my listview builder. This is the typical response I get from my api:
HTTP 200 OK { "count": 1023 "next": "https://api.example.org/accounts/?page=5", "previous": "https://api.example.org/accounts/?page=3", "results": [ … ] } 
I get a count that gives me the number of objects, the next page url and the previous page url. The next is null if we are on the last page and previous is null if we are on the first page.I already have the scroll controller for listview figured out so I don't need help with that.I just want to get your thoughts on my logic and see if there is a better way to implement this.I have basically decided to store the current index, previous index, and the next index in the provider and use them to update the url that gets requested to the API.Every time there is a get request to the API, we check and see if next is null in the response body and if it isn't we set the next index in the provider as current index+1.If next is null in the response body then we set next index to null and we don't try to request any more pages.If the next index is not null then when we are reaching towards the end of our current list we set prev index to current index, current index to next index, and the value of next index to null temporarily. We make a get request to the url and add the results to our list. The value of next index is updated if the response shows that we have more pages.If the listview is refreshed then we set prev to null, current to 1, and next to null. We completely clear the list and assign the new results.

January 18, 2020 at 02:57AM by Competitive_Ride
https://ift.tt/30Havxn
New post on /r/flutterdev subreddit:

Blog or tutorial for layering different widgets and keeping some layers transparent
What i am trying to achieve is i have a alphabet 'A' on the screen. Inside the text body i want to show a container whose height is varying. So in the background screen lets say the color is green. The text 'A' on the screen is transparent. Inside 'A' text is filled with color yellow. But the color lowers its height level gradually. And a new color is revealed for the reduced height space, lets say pink.

January 18, 2020 at 07:20AM by motominator
https://ift.tt/2NEpzX1
New post on /r/flutterdev subreddit:

Setting Up CI/CD For Flutter With Codemagic
https://ift.tt/367iDIg

January 18, 2020 at 09:06AM by Mastersamxyz
https://ift.tt/363w6kC
New post on /r/flutterdev subreddit:

Hive Vs Sembast Vs Moor
Hello people, which one do you use for local storage on mobile? Pros. Cons. Your opinion. :)

January 18, 2020 at 08:45AM by taufiq_rahman_08
https://ift.tt/2txhEUu
New post on /r/flutterdev subreddit:

How to store & display data after logged in user's input?
I hope this fits under a discussion and not a support forum. I'm trying to implement an idea into an app, in which following things need to be done:user signs in with email/gmaileveryday users provides an input(like, what they want to have in lunch today) which will be storeda list view/tabular view to display all user inputsCan anyone point out which topics do I need to cover in flutter to implement this? I know for signin purpose firebase tutorial is there but somehow those only covers the signin-signout part only.I'm really looking forward to develop this app as my current job s*** and I'm trying to learn new tech which really excites me. I know its kind of a noob-post but I really need your help on this.

January 18, 2020 at 11:37AM by 07navneet
https://ift.tt/2ubhiD4
New post on /r/flutterdev subreddit:

Has anyone got parse files download using flutter web?
I have been using a flutter plugin for parse server that works fine for all parts but the parse file.How do you do that?

January 18, 2020 at 12:42PM by jackHax7
https://ift.tt/2R6lWeL
New post on /r/flutterdev subreddit:

Add a web view into flutter web?
I’m trying to create a flutter app and one of my pages is a web view, but I keep getting the loading indicator when running the app on chrome. Has anyone here been able to add a web view when running flutter on a browser?

January 18, 2020 at 05:08PM by mostdope96
https://ift.tt/2uWSRcU