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

Instant feedback
Hi. I'm trying to create an app that listens to its user and sends instant feedback (a notification, vibration, screen color change, etc.) to them whenever they use a filler word ('like,' 'um,' 'uh,' etc.) and then carry on listening. I'm struggling to figure out how to do that though. Does anyone have any helpful pointers on where to start?

December 31, 2021 at 08:52PM by Glad-Physics-8490
https://ift.tt/3mMV5DU
New post on /r/flutterdev subreddit:

Keyboard Differences on Android and iOS
https://twitter.com/Mullr33/status/1476554402081169420?t=RYoDMnuHYR1hLafOhbdHvg&s=19

December 31, 2021 at 10:12PM by ufohitchhiker
https://ift.tt/3eEVfIZ
New post on /r/flutterdev subreddit:

Flutter Paytm Integration
How to Integrate Paytm Payment Gateway in Flutter? Flutter Paytm Integration with Example.https://dhruvnakum.xyz/flutter-paytm-integration

January 01, 2022 at 08:59AM by Red_Star25
https://ift.tt/3qDP1Ph
New post on /r/flutterdev subreddit:

Flutter + Firebase tutorial/course [ Resource Request ]
/r/flutterhelp/comments/rt4yo4/flutter_firebase_tutorialcourse_resource_request/

January 01, 2022 at 09:33AM by CountMeowt-_-
https://ift.tt/3HqCRjj
New post on /r/flutterdev subreddit:

Flutter ios performance
As flutter have cupertino widget, we can build app for ios that looks native. Are there any flutter ios apps with good performance?Is it worth it to make app in flutter for ios or better go with swiftui(for better performance)?

January 01, 2022 at 10:54AM by dhfhfjfjfj11
https://ift.tt/3qBvEGx
New post on /r/flutterdev subreddit:

I've been learning flutter for a while and using firebase as backend and wanted to learn some backend technologies as you can't stick with firebase as your app grows so which would be the easiest to get into what is your advise to beginner who is just starting backend
Please give your advice

January 01, 2022 at 11:58AM by Ok-Butterfly-7898
https://ift.tt/34d0AFw
New post on /r/flutterdev subreddit:

Stable version of Isar database
Hello, I found that stable version of Isar database is already released: https://pub.dev/packages/isarIsar is project from same developer which created Hive database but Isar bring some improvements like: Queries, Full-text search, Indexes, Transactions and many more.More info you can find in pages of this project: https://isar.dev

January 01, 2022 at 01:08PM by mjablecnik
https://ift.tt/3zhgHxd
New post on /r/flutterdev subreddit:

Tap & Tap
I have created a game with Flutter under an hourGitHub: https://github.com/imayush-chauhan/Tap-TapInfo:It's a tap game, Player needs to cross the yellow line before the opponent by pressing their button*I saw this on Instagram reels, decided to make it

January 01, 2022 at 02:56PM by AyushYo
https://ift.tt/341l2ZJ
New post on /r/flutterdev subreddit:

Flutter Calculator App UI
https://ift.tt/3zdcfzy

January 01, 2022 at 03:42PM by rrtutors
https://ift.tt/3eH8atY
New post on /r/flutterdev subreddit:

I made a card-matching browser game with Flutter
Hello everyone.I have been learning Flutter and building basic mobile apps & games with it for about a year now.​This is my first Flutter Web project, a simple card-matching game. (AKA memory cards)Basically the goal of the game is finding all card pairs before the time runs out.I also created a GitHub repository and uploaded the project for those who want to see the source code.​Working Demo: https://confident-austin-19dbd2.netlify.app/GitHub Repository: https://github.com/ercantomac/card_matching_game_by_ercan​Any feedback and/or comments are appreciated.Enjoy the game!

January 01, 2022 at 08:21PM by ercantomac
https://ift.tt/3JABMqW
New post on /r/flutterdev subreddit:

Flutter_security
There aren’t many packages about security in flutter so I made one.It’s just the beginning but there are two interesting methods to check if someone tamper your app.Unfortunately one is iOS only so I’ll appreciate everyone who think can help me with the Android part (and also someone to check if the iOS stuff is fine 😄)Here you can find it.Also maybe some expert in mobile security can check if the methods can actually made life harder to attackers

January 01, 2022 at 09:26PM by marcotrumpet
https://ift.tt/32UzthS
New post on /r/flutterdev subreddit:

How does a parent widget know to rerender itself when only a child widget's internals were updated?
If I have an ExpansionPanel inside a Column that is center aligned and the user clicks on the ExpansionPanel to grow itself, since the ExpansionPanel does not have access to my setState to cause a rerender, how does the parent component know to update the constraints for the ExpansionPanel and move the other widgets inside the Column out of the way?I was under the impression before that constraints given by the parent were fixed until the next time setState were called.I have no callbacks attached to ExpansionPanel so there is no way for ExpansionPanel to cause the parent widget to rerender.
void build(context) { return Column( children: [ ExpansionPanel( body: SizedBox(height: 400), headerBuilder: (_, __) => Text("Click to expand") ), Text("This text gets pushed down when ExpPan expands") ] ); } 


January 02, 2022 at 09:30AM by em_te
https://ift.tt/3FM0H8T