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

Very Sensitive Pageview Swaping
Hi I use pageview along with interactiveViewer to be able to zoom images and pageview for show multiple images, but when I zoom in a certain image and want to move within the image to explore the rest of the image either in left side or right it start swapping to the next image ignoring the rest of the image,​I want to change this sensitivity or whatever it is

April 11, 2021 at 10:14PM by ANDRUXUIS
https://ift.tt/2QaiEch
New post on /r/flutterdev subreddit:

Custom icon packs like on twitch/youtube/whatsapp/Line .
I am curious about icon packs, how does it work, is there a package for that?I would suppose that i‘d just use png‘s or gif‘s and create a selection widget for that.But it would be really nice to have a finished package for that, as it seems to be actually a pretty good was to monetizing apps.

April 12, 2021 at 12:14AM by Bumblehirnet
https://ift.tt/2QdHxUr
New post on /r/flutterdev subreddit:

My App
Hello There Flutter ijust want to thank you becuse your language is my favourite programing language and its so easy thx for flutter team that make makeing apps more easier

April 11, 2021 at 11:37PM by Justimrandy
https://ift.tt/39Z1jKo
New post on /r/flutterdev subreddit:

is Mac Mini M1 8GB a good choice for serious flutter dev.
Most people I've talked to have been all praise for the M1 Macs, anyone here who disagrees?

April 12, 2021 at 03:50AM by briteniterises
https://ift.tt/3d6NRpU
New post on /r/flutterdev subreddit:

Methods vs Stateless Widget to return widgets
It's convenient to use methods to build widgets, then I read this article on codemagic written by a Flutter GDE that it's better to use Stateless Widgets to improve the app's performance. Here's the link to the article.I need clarification because I've seen so many tutorials by Flutter experts where they use methods to return widgets to build the UI.Thanks

April 12, 2021 at 04:24AM by deecoocoo
https://ift.tt/2PNx5mY
New post on Flutter Dev Google group:

How to protect CODE TAMPERING in Flutter?
I'm new to Flutter and I'm creating an app in Flutter. Currently I'm going through some of the security points. One of which is "Code Tampering". How to protect the app from code tampering & code injection? In Native Android, we use to check verify the Release key Signature so that we can avoid

April 12, 2021 at 06:10AM by Avon Mobility Solutions
https://ift.tt/3a3QEOC
New post on /r/flutterdev subreddit:

Flutter ready to serve MVVM based Boilerplate
https://github.com/joshsoftware/flutter-boilerplateThis boiler plate was made keeping easy API integration and using clean architecture in mind.There are some additional feature likeCommon loader/alert/error widget for APICustom URL screen for Base URL for local testingNetwork checkAnd is proper documented. Give it a look

April 12, 2021 at 06:48AM by ab_hi_j
https://ift.tt/3uKXiBs
New post on /r/flutterdev subreddit:

What solution do you use for logging?
There are multiple ways to do logging in flutter. What solutions do you use in your apps (and how big are those apps)? Have you found a need to switch logging solutions because your first choice turned out to be bad as the development of your app progressed?

April 12, 2021 at 09:00AM by ChristianKl
https://ift.tt/3tfYlZC
New post on Flutter Dev Google group:

pdf.save() Not working for PDF creation help!
i am reproducing a code from a pdf tutorial, which i have copied the exact codes. but i cant make it work. there is only one line that is not working. pls help! thank you! CODE HERE _______ import 'dart:io'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import

April 12, 2021 at 09:42AM by potato gaming
https://ift.tt/3taUP2P
New post on Flutter Dev Google group:

error PlatformException(CANCELED, User canceled login, null, null)
hai team, i am using below code to authenticate *fitbit* final result = await FlutterWebAuth.authenticate(url: url.toString(), callbackUrlScheme: callbackUrlScheme).catchError((onError){ print("error $onError"); }); but after redirected to my app screen, i am unable to get result

April 12, 2021 at 10:46AM by kesava bandi
https://ift.tt/3a3NGK9
New post on /r/flutterdev subreddit:

Need a flutter developer
We are looking for a flutter developer who can do an end - end process of publishing an app to the google Play store / App Store and also help us building an iOS stack for the app ( Android is already done) , has a thorough know- how of google policies ( News policy to be specific )Responsibility : - Understanding google news policy - Check for already existing issue with the app ( Policy related) - Publish the appQualification : A verified Flutter developerSeniority level N/AContact:+91 8105434634

April 12, 2021 at 10:56AM by Neither_Raccoon_8815
https://ift.tt/3dasBiR
New post on /r/flutterdev subreddit:

Flutter errors handling rant
Say you want to send all unhandled exceptions to your server.You google "flutter errors handling" and that leads you to https://flutter.dev/docs/testing/errors#quit-application-on-encountering-an-error"Nice and simple" you think, add the code and attempt to live happily ever after. But sooner or later you find out that the void _onTap() async { ... } function you pass to a button throws sometimes, and its exceptions are not caught by FlutterError.onError.You google again and eventually find that all exceptions thrown by async functions called by normal functions are just swallowed by the VM. To really catch all exceptions one should:set FlutterError.onError,call runZonedGuarded,...so that's what you do.But the exceptions are still not caught for some reason! You spend some more time debugging and eventually figure out that WidgetsFlutterBinding.ensureInitialized() should be called from within runZonedGuarded for the exceptions to be caught.Seems too much of googling and debugging for a base requirement of handling all exceptions.

April 12, 2021 at 12:04PM by submergedmole
https://ift.tt/3dO85ne