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

bgg_api package migrated do null safety!
Any board game geeks here? :) I wrote a simple package that allows you to communicate with boardgamegeek API. It's still work in progress but yesterday I've migrated it to Dart 2.12 with null safety. :)
Take a look - any suggestions are welcomed.https://pub.dev/packages/bgg_api/versions/0.3.0-nullsafety

February 27, 2021 at 10:28PM by bartektartanus
https://ift.tt/3aZT4yu
New post on /r/flutterdev subreddit:

CICD implementation in Flutter using Azure DevOps and AppCenter
https://ift.tt/2P825Nx

February 28, 2021 at 12:40AM by ALOKAMAR123
https://ift.tt/3uDWKOp
New post on Flutter Dev Google group:

Expanding Card on Tap
I was wondering if there was a way to tap on a card with a list tile inside it and instead of navigating to a new page that card gets bigger, shows more info but you doesn't take up the entire screen?

February 28, 2021 at 02:55AM by Mark Valeriani
https://ift.tt/2MzikCw
New post on /r/flutterdev subreddit:

You might already know, in Pub.dev there is a filter for nullsafety packages. At this time have 920 packages.
https://ift.tt/3uEdu87

February 28, 2021 at 03:01AM by anticafe
https://ift.tt/2O79iNo
New post on /r/flutterdev subreddit:

Checkout this squishy cyberpunk-themed button built with the responsive_styled_widget package
Hello everyone. Here is another package I just published called responsive_styled_widget. It utilizes all the packages I published recently. Check out the medium article where I showcase some of its features. (I realized this sub does not allow images so I can't post the GIFs here...)

February 28, 2021 at 06:00AM by kevinvan0720
https://ift.tt/3aZqJZ7
New post on /r/flutterdev subreddit:

App Store screenshot maker - Flutter desktop
https://www.youtube.com/watch?v=1dUa61K2mFA&feature=youtu.be

February 28, 2021 at 05:22AM by sfvr
https://ift.tt/3ksI1RM
New post on Flutter Dev Google group:

firebase_admob issue
For Clearity SS added as attachements : ISSUE : with dependencies : firebase_core: "^0.7.0" firebase_auth: "^0.20.1" cloud_firestore: "^0.16.0+1" firebase_admob: "^0.11.0+1" ----------------------------------------------------------------------------------

February 28, 2021 at 06:26AM by Shriram Ghadge
https://ift.tt/3dNQ4Y2
New post on /r/flutterdev subreddit:

Flutter - ListView - Search Filter - NewsApplication
https://ift.tt/3uD0eRa

February 28, 2021 at 07:00AM by rrtutors
https://ift.tt/3kvlkfC
New post on /r/flutterdev subreddit:

beginner coming from web, needing help making sense of StatefulWidget
I'm reading up on creating a StatefulWidget for local/ephemeral state.So I make a class that extends StatefulWidget.My class contains createState which returns in instance of the state.The state is a class that extends State and contains the data members and mutation methods. Makes sense.And then the state class implements a build method and returns the UI. What the hell?!This just seems way... off. Am I misunderstanding something?Conceptually, state should return data, and a widget should use the state and return UI. Separation of concerns right? Is this pattern pervasive throughout Flutter, or is pattern unique to StatefulWidget?

February 28, 2021 at 06:10AM by izzlesnizzit
https://ift.tt/37QM9pl
New post on /r/flutterdev subreddit:

FlutterForce — Week 110
https://ift.tt/37VWSPr

February 28, 2021 at 11:43AM by flutterist
https://ift.tt/2PfwRUN
New post on /r/flutterdev subreddit:

Expert AndroidSDK Install
https://ift.tt/300Vir8

February 28, 2021 at 01:21PM by fredgrott
https://ift.tt/3kucZJ8
New post on Flutter Dev Google group:

Why flutter apps use much memory than other native application
Hi all, Please help me to the subject topic for my Seminar . Looking forward to hear from you...

February 28, 2021 at 02:32PM by tik with codegenix 6
https://ift.tt/3szmAB9
New post on /r/flutterdev subreddit:

Codegen in dart thus Flutter is crap. Change my mind.
I am so so so hoping to be proved wrong.🤞🏼I will share 10 more awesome flutter tips in return.

February 28, 2021 at 02:16PM by erluxman
https://ift.tt/3r5dBaB
New post on /r/flutterdev subreddit:

Different ways of accepting payments and withdrawimg funds in flutter apps
I have thought about this a lot and it seems like there is quite a lot of different ways to make in app payments in apps, but also sending funds between users and withdrawing funds as a user opens up a wide variety of solutions.I am working on an app idea that will implement payments and withdrawels, however, I don't have the business logic set in stone yet and am just researching different solutions and best practices for in app payment solutions.So in short, my app users will have wallets in the app which they can add funds to or withdraw funds from, but can also use the wallet to send funds between each other or earn funds in app.Adding funds to their wallet can either be implemented with a service like stripe, or a local payment gateway provider in my country, or via something like Google pay or even paypal.On the one hand, users should be able to add funds to their wallet and then use their wallet funds to make in app payments, however, they should also be able to withdraw funds from their wallets into their bank accounts. A small portion of their payment transactions (+- 2% transaction fee) will go to the app developer (me), so I should also be able to withdraw those funds, and a small fee is taken by the payment provider e.g. stripe takes I think 2% etc.This opens up a whole range of possibilities and uncertainties.I can implement stripe, so anyone in the world can make in app payments with their credit or visa cards, and the barrier to entry is relatively small for non technical users, however, some users and myself wont be able to withdraw those funds because stripe is not available to withdraw or link with my bank yet for my country. So in that case, I can accept payments, however cannot yet withdraw them. Something like paypal is pretty cool for me to accept payments, since it is already linked to my bank account and I can easily withdraw funds, but not all users are familiar with how to create a paypal account etc. so the barrier to entry is big.The way I see this is that there are 2 seperate parts, payments and withdrawels.I can use just about any service to receive payments from users, however I need to use a service which will allow me to payout or withdraw in my country. At the same time, users will also be withdrawing, so it should be easy for them as well to withdraw funds. Using a local payment gateway provider to make and receive payments could work, but then I am limiting my audience only to my own country.I want to write my app using flutter. Is there a guide on what is the best practices when implementing payments and withdrawals, or do you guys know of any useful tools and resources I can have a look at while doing research on the topic. My Google searches mostly ends up in ads of payment providers, however Im looking for guidance or articles on the topic.I have created a few apps with flutter but am pretty new with in app purchases and withdrawels.Sorry for the long post, would love to get some advice or discuss further.Thanks in advance.

February 28, 2021 at 04:29PM by janpan
https://ift.tt/300k230
New post on /r/flutterdev subreddit:

Flutter: An Easy and Pragmatic Approach to Navigator 2.0
https://ift.tt/2O9Oxk4

February 28, 2021 at 04:06PM by Fewthp
https://ift.tt/3pXX1Ih
New post on Flutter Dev Google group:

User Session Management
All I’m looking for the correct/preferred solution to implement user session management in my Flutter application. I have an existing app that uses email credentials to register and authenticate. But I need the monitor the JWT OAuth token expiring and redirect to login if it expires Thoughts?

February 28, 2021 at 05:51PM by William Williams
https://ift.tt/2Mwp2ck
New post on Flutter Dev Google group:

Container documentation
I was studying on https://ift.tt/3b8ug4f by looking the all of the 29 examples. But after getting confused about *Container *I started looking at this link https://ift.tt/2NQBkgh. But this link also confused me a lot

February 28, 2021 at 05:57PM by Murat Can OĞUZHAN
https://ift.tt/3bFeZdq