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

Teampass clone / osint tools in dart/flutter
Hi guys, I was wondering if there is an awesome list of cybersecurity tools in dart, like Sherlock socint or nuclei (project discovery) likes ? And ultimately, does anyone know a project cloning the php project called teampass?Cheers

February 01, 2022 at 12:31PM by x0rzkov
https://ift.tt/upavtPBzo
New post on /r/flutterdev subreddit:

Why do you all love Flutter?
Why do y'all love Flutter?View Poll

February 01, 2022 at 02:12PM by AyushDatta
https://ift.tt/XGUSoBz7O
New post on /r/flutterdev subreddit:

Forced lockscreen
Hi I'm newbie with flutter and I would like to create an app similar to OnePlus' Zen Mode, but I can't find a way to force the phone to stay in the lock screen for x time?

February 01, 2022 at 02:24PM by zywelf
https://ift.tt/SxOX2VPCw
New post on /r/flutterdev subreddit:

My boss says Flutter is only good for solopreneurs or startups
Our scrum team runs 2 weekly sprints as a norm. In one of the new projects, a suggestion was given to use Flutter. Reason: cause it's the best for Mobile Dev at the moment. 100% no doubt.My boss, being the boss, had his opinion that Flutter is only good if you are a single man building an App. He says none of us are proficient in Dart. Taking a risk in an unknown language will be hard for Scrum teams. He is the point of contact with the product owners, and the product owners do not like uncertainties or "experiments" (with new tech/language)."I can possibly hire some dart developers. Though from my experience it won't be easier than finding a Web Dev. Also, some of you would have to go if we decide this route!!".

February 01, 2022 at 09:23PM by RenSanders
https://ift.tt/zVrhsIjNS
New post on /r/flutterdev subreddit:

FLutter UI | NFT collection Application
I recently started making tech videos on Flutter. My recent video is based on - FLutter UI Tutorial to build NFT collection Application. I would like some feedback and also ready for suggestions if you guys have any new app ideas you would like to see built in Flutter.​Link:- https://www.youtube.com/watch?v=Zz8V2M-nvmc&t=11s

February 02, 2022 at 02:23AM by zenwraight
https://ift.tt/MgY0L4WIR
New post on /r/flutterdev subreddit:

native_drag_n_drop Android Support!
A little over a week ago I created my first plugin native_drag_n_drop. Many people were excited but some were sad that there was no Android support. Well after a week of slaving away with u/GetBoolean, we have finally released v0.0.4 with Android support! Hope you enjoy :)

February 02, 2022 at 06:06AM by mriosdeveloper
https://ift.tt/oYKex7Umw
New post on /r/flutterdev subreddit:

NFT collection Application
I recently started making tech videos on Flutter. My recent video is to build NFT collection Application. I would like some feedback and also ready for suggestions if you guys have any new app ideas you would like to see built-in Dart.Github:- https://github.com/Kavit900/nft_collection_appLink:- https://www.youtube.com/watch?v=Zz8V2M-nvmc&t=11s

February 02, 2022 at 05:37AM by zenwraight
https://ift.tt/IyY9v5gw7
New post on /r/flutterdev subreddit:

A TicTac game made with flutter
https://ift.tt/9exFluS0n

February 02, 2022 at 09:30AM by devdotsehyde
https://ift.tt/tuLDhc4ZV
New post on /r/flutterdev subreddit:

Is Flutter hard to learn for a web developer?
Hi,I've been coding for past decade or so and I'm currently a fullstack dev with 3 years of actual professional experience in Javascript (Node, React and Vue).My company wants to rewrite some applications in Flutter (originally React Native). I asked my supervisors for time to learn Flutter, since I find the language and technology interesting and I wouldn't mind diving deeper into it. My question is how long should I ask for? From being a Flutter beginner to deploying a simple app to production with Flutter? I know it's kind of a subjective question, and it depends on the individual studying. But what would you guys estimate? I asked for 3 weeks, I've always been a fast learner, but should I ask for more?

February 02, 2022 at 10:37AM by WasJohnTitorReal
https://ift.tt/pvGM62cSd
New post on /r/flutterdev subreddit:

Can flutter embed itself into a parent window? (nsView or nsWindow, HWND, X11's Window)
Hi,I wonder if flutter is able to embed into a parent window?A parent window would be HWND on windows, nsView or nsWindow on macOS, xcb_window_t with X11.This would be useful in the context of audio plugins (AU, VST3, CLAP, ...). See example interfaces: - https://github.com/free-audio/clap/blob/main/include/clap/ext/gui-win32.h - https://github.com/free-audio/clap/blob/main/include/clap/ext/gui-cocoa.h - https://github.com/free-audio/clap/blob/main/include/clap/ext/gui-x11.h - https://github.com/free-audio/clap/blob/main/include/clap/ext/gui.hThe flutter application would be ran in its own process of course.Thank you very much for your input! :-)Regards, Alex

February 02, 2022 at 12:59PM by abique
https://ift.tt/h5ubBAM7G
New post on /r/flutterdev subreddit:

Best Databases Benchmark
here I have improved Objectbox's Benchmark to use the latest version of Isar/Hive/Objectboxand here is the result and the videohttps://github.com/msxenon/flutter-db-benchmarksI would like to hear from you about it

February 02, 2022 at 12:17PM by Modi2x
https://ift.tt/7yKnJHXAk
New tweet from FlutterDev:

🤩 Day 1 of @FlutterVikings is starting soon! Are you excited for the awesome content the community has put together? Tune in for an amazing line-up 👇 https://t.co/7Xu7ip7l1Z— Flutter (@FlutterDev) Feb 2, 2022

February 02, 2022 at 01:30PM
https://twitter.com/FlutterDev/status/1488852199438536707
New post on /r/flutterdev subreddit:

Anyone else use BLoC AND Provider?
Hi there! I've spent some time developing a pretty complex app, and through the many hours of developing I learned a ton of things that make the code feel a lot more clean.One of them is using Freezed for state: I love the required exhaustion of the union types - I never get "unhandled state" type of errors.The trouble with this is that there are certain parts of the application that are *only* rendered on certain states. For instance, I have a cubit like this:
class ChemicalSelectCubit extends Cubit<ChemicalSelectState> { ChemicalSelectCubit() : super(ChemicalSelectState.loading()); Future<void> beginLoad() async { emit(ChemicalSelectState.selecting(...)); } } 
(obviously cut down for brevity)and a state something like this:
@freezed class ChemicalSelectState with _$ChemicalSelectState { factory ChemicalSelectState.loading() = _ChemicalSelectStateLoading; factory ChemicalSelectState.selecting(...) = SelectedChemical; } 
then, I have a bloc builder like this:
child: BlocBuilder<ChemicalSelectCubit, ChemicalSelectState>( builder: (context, state) => state.map( loading: (_) => const Center(child: CircularProgressIndicator()), selecting: (chemicalSelecting) => ChemicalSlider()), 
The thing is, I have an option here: I either can pass in the chemicalSelecting down to the chemical slider and all child widgets (but this is the common prop drilling problem) or I can opt for this:
child: BlocBuilder<ChemicalSelectCubit, ChemicalSelectState>( builder: (context, state) => state.map( loading: (_) => const Center(child: CircularProgressIndicator()), selecting: (css) => Provider.value( value: css, child: ChemicalSlider(), )), 
Then, whenever I need chemicalSelecting in the children, I can easily context.watch<ChemicalSelecting> and not have to deal with what to do on the loading state, since it's impossible to get the loading state in that subtree.Anyone else have a solution to the "impossible to reach state in a subtree" problem? Thanks!

February 02, 2022 at 04:13PM by PlzDontPMAboutFAANG
https://ift.tt/rmzPKVlI3
New post on /r/flutterdev subreddit:

How do I convince my team that we should use separate packages for state management , navigation , etc, rather than using a simple all in one solution like getx.
I am not against or in favour of getx package. But, I just like the idea of using separate packages for state management, routing etc.I have created an architecture similar to clean architecture using the following,Provider auto_route get_it Dio shared_preference

February 02, 2022 at 08:02PM by _the_airbender_
https://ift.tt/7elT4LPMa
New post on /r/flutterdev subreddit:

How do you organize your full-stack projects?
I have one project which has a backend and a web frontend part. Each of them lives in a separate repo. I've decided to add mobile app as well to my stack (Flutter) probably into third repository. I'm wondering how others are managing their projects.

February 02, 2022 at 07:25PM by tx6281920
https://ift.tt/Uw94X1rtd