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

Flutter templates/shell apps
Hey all,I’ve been on and off trying to learn Flutter to build a simple application for my workplace. We will never be able to employ a coder so I’m trying my best to make something simple.Just wondering if there are any sites someone could direct me to that have shell applications to pick apart and learn from. The kind of app I’m looking to do is very text/information based, basically just a whole bunch of screens that link to other screens with a static app bar and bottom bar. Everything I’ve found thus far is more complex, but this is an app for people with low literacy and likely not high end phones. Any help appreciated! Thank you for reading!!

January 17, 2020 at 08:21AM by victoriousbbyg
https://ift.tt/2RlMzeu
New post on Flutter Dev Google group:

Why is my dynamic link not working on ios
static DynamicLinkParameters createProductLink(final String productId) { return DynamicLinkParameters( uriPrefix: 'https://app.example.com', link: Uri.parse('https://ift.tt/30v5WWG), // <- your paramaters dynamicLinkParametersOptions: DynamicLinkParametersOpti

January 17, 2020 at 10:23AM by Felix
https://ift.tt/2FUElVk
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