Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Quiz App using API : How to declare index using a builder (different than PageView.builder)
Hi Flutter community, I am working on a quiz app, and I am using a PageView.builder to declare an index, as the code below shows. However, this requires me to swipe right in order to go to the next question. Is there any other *builder *I can use so that I don't have to swipe to change questions

October 09, 2020 at 04:10AM by Andrew Villegas
https://ift.tt/33EHNAa
New post on /r/flutterdev subreddit:

Which one is better in your opinion?
In the comments you can explain why. I'd really appreciate that!View Poll

October 09, 2020 at 07:47AM by 2reform
https://ift.tt/3nzCGJi
New post on Flutter Dev Google group:

how to animate a text field in the app bar to expand once clicked on
I have a text field in the app bar, but I want the app bar once focused and the user wants to start typing to expand and a take space of the whole app bar, I tried using an animated container but no luck, here s my attempt https://ift.tt/33GHxAA

October 09, 2020 at 09:09AM by Macphail Magwira
https://ift.tt/3dbvRJi
New post on /r/flutterdev subreddit:

Yo guys new easy tutorial!! 😃️ Let me know what you think
https://www.youtube.com/watch?v=cJ_BTkb-UQA

October 09, 2020 at 10:37AM by workflow_2
https://ift.tt/3lFG5F1
New post on Flutter Dev Google group:

how to notify streambuilder about signout /firebase auth
hi guys. i am having trouble signing out my user ! after the sign out button is pressed i can navigate user to another page but the user can stil see the same personal user uid. i think what i need to do is to notify the the streambuilder in main about it but i dont know how its done! anyone

October 09, 2020 at 12:59PM by reza7....@gmail.com
https://ift.tt/3jKR2o5
New post on Flutter Dev Google group:

print statement is not working in a function
Hey guys if I make a print in the function lat() it's not getting printed on the console is there any way to prevent such behavior in the function cause I am not able to debug the application I am new to Dart/Flutter please help me guys I am actually trying to get the lat and long so that I can

October 09, 2020 at 03:28PM by raghav mri
https://ift.tt/3dbume6
New post on /r/flutterdev subreddit:

How do I run the release build of Flutter app on android emulator?
I can use the debug build on emulator, but it the same thing as running the app in debug mode and is slow.​How do I run the apks generated using the command flutter build apk(the fat apk) or flutter build apk --split-per-abi(the split apks) on an android emulator?Error: Could not parse error string

October 09, 2020 at 03:46PM by ToChaseAwayTheNight
https://ift.tt/34GWfHe
New post on Flutter Dev Google group:

consumables quantity in in_app_purchase
I'm using in_app_purchase: ^0.3.4+12 and flutter 1.22.0 Hi, I need to add multiple quantities of a consumable product. I know that *in_app_purchase* plugin exposes multiple StoreKit Wrappers and *SKPaymentWrapper* is the one for quantity. But, I don't know how to implement it. _buyProduct(Pr

October 09, 2020 at 04:30PM by Ankur Bansal
https://ift.tt/33JxVoR
New post on /r/flutterdev subreddit:

Flutter State Management using Provider
https://ift.tt/2HZ3wu7

October 09, 2020 at 04:33PM by iamshadmirza
https://ift.tt/3iP1cT7
New post on Flutter Dev Google group:

Flutter Auto Rotate
How in Youtube app when viewing in landscape (let it be landscape right) then I rotate to landscape left, the video and all options rotate to landscape left. But When I am implementing the same within my app using SystemChrome.setPreferredOrientations, it is not working? Anyone help me where I

October 09, 2020 at 05:14PM by Yash Chandra verma
https://ift.tt/36NUfzx
New post on /r/flutterdev subreddit:

Need help for chat app
I have experience with flutter and APIs, now I am thinking of making a chat app where we can send text and images.Now I don't have any idea how to do deal with this, I mean real time chat and replies.What would be the best way to move forward and what all tech will be required.

October 09, 2020 at 06:18PM by simpdiepie
https://ift.tt/34ANr5C
New post on /r/flutterdev subreddit:

There's only 14 animated icons and half of them are just reversed versions of the other half.
So 7 use cases is not enough for these. Just be careful if you implement them in your project, you may not have what you're looking for. Add->close is simple and has a high demand, and yet not implemented. I'm not sure where anyone's at on adding more, but the latest beta still has the same 14 (7). No idea on how to create a custom one for my project and not sure if it is worth the trouble or not.Maybe give a like to the issue for visibility? https://github.com/flutter/flutter/issues/42461

October 09, 2020 at 07:35PM by joeyda3rd
https://ift.tt/3lz0CL1
New tweet from FlutterDev:

Time is running out ➡️ Don't forget to submit your app for the 2020 Material Design Awards and help us celebrate the products that bring the system to life!

📅 Deadline: October 16th 📅

🏆 https://t.co/TdGZe7xOwL— Material Design (@materialdesign) October 5, 2020

October 09, 2020 at 08:00PM
http://twitter.com/FlutterDev/status/1314626683371171842
New post on Flutter Dev Google group:

Flutter aad_oauth - How to get back to mobile app after the Microsoft authentication.
I created a mobile application using Flutter with Microsoft Azure. Basically, I would like to access the Azure Functions using the Microsoft account. Using my app I was able to access through web browser the Microsoft identity platform, I could Sign In using my credentials, but after that I

October 09, 2020 at 08:45PM by Vinícius Passarella
https://ift.tt/2IfvDp9
New post on /r/flutterdev subreddit:

[flutter-builder] generate flutter widget tree with typescript. (Just released!)
just released "flutter-builder" -- a oop based js/ts flutter widget tree builder for nodejs (star it if you like!)All major standard widgets and dart types are supported wrapped with typescript.this can be used for sketch / figma plugin development for flutter. with general usage coverage. https://github.com/bridgedxyz/flutter-builderthis package enables you to generate flutter code from web/server platform. written in pure typescript. use flutter syntax from js for ease of development. and complex tree building.example ``` ts const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)}) console.log(text.build().finalize())// >> // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black))const text = new Text("this is written in typescript", {textStyle: new TextStyle(color: Colors.black)})const row = new Row({children: [ text, ]})console.log(row.build().finalize())// >> // Row( // children: [ // Text("this is written in typescript", textStyle: TextStyle(color: Colors.black)) // ] // ); ```

October 09, 2020 at 10:50PM by softmarshmallow
https://ift.tt/3iLqJgb