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

Secure flutter app
Storing Keystore keys & passwords in key.properties are safe for app release?

February 20, 2022 at 08:47AM by Ill_Leave_9550
https://ift.tt/O8AyokZ
New post on /r/flutterdev subreddit:

How can I modify the pitch of an audio file and save it to disk?
I'm building an app for Android and iOs and I need to take a voice recording, change its pitch, play it back to the user, and re-save the file to disk with the pitch modified. I can't find a plugin to do this.So far, the closest I've come is to use flutter_sound to record it and just_sound for pitch-modified playback, but unfortunately the just_sound plugin doesn't allow you to save the modified file to disk.

February 20, 2022 at 08:33AM by HarryPlopperOMG
https://ift.tt/rMju6zv
New post on /r/flutterdev subreddit:

Need advices
I'm i computer science student and i stared with flutter 1 year ago but the problem i learn like for a solid month and i stop like for 2 month and after that I resume....any advice how to learn properly? Thanks

February 20, 2022 at 10:07AM by Danny4900
https://ift.tt/jr9a4lX
New post on /r/flutterdev subreddit:

Qr Code in Flutter
https://ift.tt/MFzySOb

February 20, 2022 at 11:54AM by SncOne_
https://ift.tt/TCAh6Xy
New post on /r/flutterdev subreddit:

Is Node.js the safest solution for building an API for my Flutter mobile App ?
I'm building a Flutter mobile App for my start up but I'm not sure Firebase will be flexible enough for itI'm wondering which are the best, most used & safest options I could use to build my back-end APII want a safe solution widely used in the industry, I think building an API in Dart is still too experimental right ?Should I stick to Node.JS server using express or fastify ?What do you recommend for building the back-end of my Flutter App ?​Edit : Adding requirements -> my App It is similar to a food delivery service with ordering & seeing delivery on a map, creating orders, multiple restaurants...

February 20, 2022 at 11:48AM by Isifdis
https://ift.tt/LXnsYMa
New post on /r/flutterdev subreddit:

Does Flutter/Dart use/pull Google services, directly or indirectly? Is google-free Flutter practical?
Hi,We are evaluating Flutter for a opensource non-profit startup in europe, where many google cloud services are IMHO not GDPR-compliant. Whatever one may think about that, we do not want to use any Google services.Flutter is interesting, but we have two questions:1) Is Flutter / Dart truly Google-free? So, does any of its core libraries use Google services or pull dependencies which do?2) Is it possible that we may be effectively forced to use google services at some later point, when we already have developed our app?​Thank you for answers!

February 20, 2022 at 01:04PM by ib84
https://ift.tt/05nx4Yd
New post on /r/flutterdev subreddit:

I’m new to Reddit🙂 and I’m a Flutter Developer
After finding out how vest the flutter community is here. Also want to be apart bruhs

February 20, 2022 at 12:49PM by edeme-kong
https://ift.tt/O8EiWwn
New post on /r/flutterdev subreddit:

Flutter Docs Workflow for Alfred
Hey :)Yesterday I duct-taped together an Alfred workflow that searches the Flutter docs using Algolia Search. You can grab it here.It's written in Python 2.7 so it should work on pretty much any macOS straight out of the box using either Alfred 3 or 4.I have had to trim down the index a bit because my current plan is smaller than the total 63k entries in the official index.json. For now, I only kept the flutter packageName in it and skipped the constants to keep the index at approximately 16k records. Once I get more resources I'll dump the whole index in there.The sorting is pretty much the same as on api.flutter.dev using the same weighting specs.I hope it helps you speed up your development. :)

February 20, 2022 at 12:30PM by k2next
https://ift.tt/az8GbcI
New post on /r/flutterdev subreddit:

FlutterForce — Week 157
https://ift.tt/U82EHT9

February 20, 2022 at 12:27PM by flutterist
https://ift.tt/mxvOP1d
New post on /r/flutterdev subreddit:

ffmpeg with wasm or ffmpeg with flutter a good performance
I want to know the difference between ffmpeg and wasm or flutter, which is better to use?? And which one provides better performance for users on the site and mobile .. As I understand that wasm made the performance significantly high, but is it more than flutter? Or that ffmpeg with flutter will get better performance? .

February 20, 2022 at 01:58PM by Mazzekaty
https://ift.tt/VCRlax0
New post on /r/flutterdev subreddit:

Flutter for web development
people who used flutter for web development what is your fair feed back ?do you think flutter is ready for big scale websites or still needs more improvement?

February 20, 2022 at 09:03PM by sawalm
https://ift.tt/CHmKfaY
New post on /r/flutterdev subreddit:

Flutter Flame
I haven’t messed with flutter flame game engine yet. I was wondering if a base building mechanic would be possible with it. Think clash of clans type base building. Simple 2d base building.

February 20, 2022 at 10:29PM by Pale_Ad9858
https://ift.tt/1SRWvyN
New post on /r/flutterdev subreddit:

To remove the hard-coded vertical padding of Material context menus …
… you only need to do this:To get rid of hard-coded vertical paddings in a Material (because there is nothing else) context menu, I need to copy and modify showMenu().This global function is called from within PopupMenuButton, so I copy PopupMenuButton as PopupMenuButton2 and PopupMenuButtonState as PopupMenuButtonState2, just to change the single call from showMenu() to showMenu2(). I need also copy _kMenuDuration and _kMenuCloseIntervalEnd.My new showMenu2() function refers to _PopupMenuRoute, so I copy that class. It refers to _PopupMenuRouteLayout, so I copy that class, too. It needs the constants _kMenuScreenPadding and _kMenuVerticalPadding, the latter being the constant I want to set to 0.However, _PopupMenuRouteLayout uses _PopupMenu which must be copied. It uses the constants _kMenuWidthStep, _kMenuMinWidth and _kMenuMaxWidth.And _PopupMenu uses _MenuItem which in turn uses _RenderMenuItem and both classes must be copied and modified accordingly. They seem to exist to support dynamically changing the context menu size if items change its size, but at least while hot-reloading, this doesn't work.90% of that code is not Material specific and could live in the widgets package. I had to copy more than 600 lines of code (without class comments) just to change a 8.0 to 0.0. I could however change the menu's shape if I wanted that. Perhaps because egg-shaped menus will become a thing in 2023.And I'm not done yet. the PopupMenuItem default to a 16pt horizontal padding and a 56pt height. And it hard-codes the disabled state color as well as how to highlight and/or focus items. Luckily, there's an abstract superclass PopupMenuEntry from which I can inherit to fix all that. At least…

February 20, 2022 at 11:28PM by eibaan
https://ift.tt/PAVBO3x
New post on /r/flutterdev subreddit:

Can I use setState for micro state managment when using bloc?
I'm trying to manage a micro state that has to persist on all four bloc states, but it's just a component change, so I don't think it would be good to put in the bloc states. Am I right? Thanks

February 21, 2022 at 01:45AM by enzodtz
https://ift.tt/WOo9zK8
New post on /r/flutterdev subreddit:

FlutterFire x Bloc: Phone Authentication
https://ift.tt/hCerx3v

February 21, 2022 at 05:47AM by Red_Star25
https://ift.tt/341cFYw
New post on /r/flutterdev subreddit:

Suggestions needed for a new state management library
Hey 👋 all, I was trying to create a no magic state management library with unidirectional state change but needed some feedback on Api pattern and what are your views.Note: This is highly inspired by state notifier, mobx and provider.view snippetHere is the Github Url !(Note: It is not complete and not tested yet 🙂)

February 21, 2022 at 05:38AM by Efficient_Leave_7462
https://ift.tt/k8DCF3r
New post on /r/flutterdev subreddit:

Has anyone developed such UI in Flutter
https://ibb.co/VNL3Jv4

February 21, 2022 at 07:22AM by Dhanraj_Flutterdev
https://ift.tt/65JDhBt