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

Got pwned while testing my app.
Context: friday morning I was testing my app and decided to use my personal facebook account to test the firebase authentication that i implemented into my app with the help of the “flutter_facebook_login” and a tutorial from youtube. Everything went well and my app was working fine. The next day I wake up and got an email from facebook that someone got into my facebook account. Im new to flutter and i will like to know how safe are plugins? Can they be malicious? is it better to just implement my own stuff and to not rely on plugins? I already checked my computer and it didnt have any viruses. Can it also be someting that was not configured correctly? Like firebase or something else? Thank you for your time, hope you guys can help me figured this one out.

April 19, 2021 at 12:40AM by Golzra
https://ift.tt/3suZ1cz
New post on Flutter Dev Google group:

Diagramming app : approach suggestions
I am developing a diagramming application using Flutter where the user can click and create various shapes, move them around and connect them with lines [image: diagramscene.png] I am new to Flutter (declarative) approach. In Flutter, is it better to build this via a custom widget with custom

April 19, 2021 at 02:03AM by Nicholas Yue
https://ift.tt/3sul8zJ
New post on Flutter Dev Google group:

My New app and a team needed
Hello guys, i am a newbie in flutter and i created this chat app Connect (Beta) < https://drive.google.com/file/d/1D5pcNA-KTS4lAmhy1fB5Wz70JNnXB5sf/view?usp=sharing> . I want a team so that this app can be developed well. Please if you are interested, kindly text me in my app(Username :

April 19, 2021 at 03:56AM by Terzux Tech
https://ift.tt/3soKLC0
New post on /r/flutterdev subreddit:

Difference between Flutter mobile and web
Hi ! Beginner here with a little over 1 year of experience with Flutter. I've been mainly focusing on building mobile apps using Flutter, and safe to say I fully understand the basic building blocks of this framework.I'm now interested in trying to build a web app using Flutter, and I am curious on the difference of Flutter between web and mobile apps.To the best of my knowledge, I know certain plugins that are platform-specific (mobile - IOS and Android) cannot be used in an web app, and the reasons are obvious.With that said, I'm wondering things like layout, navigation, gesture detectors, polling data from server and app menus, is it the same as with mobile apps?And is there anything I need to know/learn before I get started with building Flutter web apps? Maybe different languages or frameworks I need to understand?Reason for asking is my company wants to build a web app for a new project, and we are understaffed, so help is much appreciated!Any help/advice/tips are welcomed ;)Thanks in advance!

April 19, 2021 at 05:48AM by danknification
https://ift.tt/3x5Aiid
New post on /r/flutterdev subreddit:

DCli 1.0 released - package for building cli apps in Dart - cross post
After almost 18 months of solid development I'm rather pleased to announce the 1.0 release of DCli.DCli is a library and tooling for creating command line (CLI) scripts and applications using Dart.Internally Noojee now has some 100K+ lines of Dart/DCli apps running our entire production environment.We have replaced a patchwork of bash, ruby, go, java and python scripts with a devops environment written entirely in Dart.I've tried multiple times to achieve what DCli does but each time I've felt the solution fell short due to issues with the language I was using. This time was different and I'm really excited about where Dart is going and what DCli can achieve.When you look at Dart as a whole it is quite different to other languages and I think this is going to be telling over the next decade as Dart begins to dominate the programming rankings.I believe that finally we have one language to rule them all ;) *As always, there is more work to be done, but if you are a Dart developer then DCli is worth taking out for a spin. At the very least it's time to retire all of those unmaintainable bash and perl scripts.
void main(List<String> args) { final search = ask('search:', required: true, validator: Ask.alphaNumeric); print('Searching for $search'); find('*.dart', recursive: true).forEach((file) { print('grepping $file for $search'); 'grep $search $file'.run; }); createDir('/home/some/dir', recursive: true); } 
Manual: https://bsutton.gitbook.io/dcli/Repo: https://github.com/bsutton/dcliTo use the optional cli tooling:
dart pub global activate dcli 
Brett SuttonNoojee IT.* only appropriate amounts of kool-aid were consumed.

April 19, 2021 at 10:08AM by bsutto
https://ift.tt/3amrxXj
New post on /r/flutterdev subreddit:

Aqueduct is dead, Long live Conduit - cross post
You may have heard that the Dart REST server, Aqueduct, has been discontinued.I'm now rather pleased to announce that a new community has formed around the ashes of Aqueduct to create the Conduit project.Starting with the existing Aqueduct code base, the Conduit team has renamed the project and have now completed Conduit's migration to nnbd and released a beta version of the code.Except for naming conventions and nnbd changes, Conduit is fully compatible with Aqueduct.Once we have sufficient feedback from the beta we will move forward with a release; hopefully in the next few weeks.I'm a true believer in Dart's future, with server side Dart development being the next big step forward.The Flutter/Conduit pair makes doing full stack development using a single language not only viable but optimal. Add DCli* to automate your production environment and you have a single language to rule your entire devops platform.I look forward to working with the community to make that a reality.If you are interested in getting involved or just want to take Conduit out for a spin then here are a few resources that you may find useful.Online manual: https://gitbook.theconduit.dev/Discord Invite: https://discord.gg/zhUfGdxvGithub repo: https://github.com/conduit-dart/conduitMigration guide (aqueduct to conduit): https://gitbook.theconduit.dev/migration_guidePub.dev: https://pub.dev/packages/conduit/versions/2.0.0-b1Note: to get the beta you MUST use:dart pub global activate conduit 2.0.0-b1Regards,Brett SuttonNoojee IT.* apologies, DCli is my passion project so I just have to mention it.https://pub.dev/packages/dcli

April 19, 2021 at 09:32AM by bsutto
https://ift.tt/3mXKswV
New post on /r/flutterdev subreddit:

Another backend question for flutter devs.
Is flask and django just as good of a backend or one has a better fit than the other for some specific reason? If so, what is it?

April 19, 2021 at 01:42PM by C0d3rStreak
https://ift.tt/2RNoilx
New post on /r/flutterdev subreddit:

barcode_scan2 was reborned with sound null safety support instead of original barcode_scan, discontinued last year
https://ift.tt/3uWws9e

April 19, 2021 at 01:17PM by mono0926
https://ift.tt/3tvyvkB
New post on /r/flutterdev subreddit:

Show aligned dialogs in Flutter
Dialog is an important interaction model in UI design. In Flutter, you can open a dialog by calling the showDialog function. This brief post introduces aligned_dialog package that allows you to open dialogs with more positioning and transitioning customizability.

April 19, 2021 at 02:33PM by Happycodeine
https://ift.tt/3tyAW5E
New post on /r/flutterdev subreddit:

AR Core Flutter
Can anyone please me how to measure distance using AR Core plugin?

April 19, 2021 at 02:31PM by paul_dip
https://ift.tt/2RNvRIX
New post on /r/flutterdev subreddit:

Size does matter — Flutter dependency management. Some words comparing JS and Flutter dependency management solutions. Writing this article changed my perspective a little - doing a small research is a good thing 😉
https://ift.tt/3sCuN7y

April 19, 2021 at 04:15PM by ThatLukeUrban
https://ift.tt/3dtu1VN
New post on /r/flutterdev subreddit:

How do your manage styling your app in Flutter?
I know this is a pretty broad question, but I wanted to know how some of you make your styling/design system. I would personally start off with Material design, but sometimes I feel that it does too much for you. For instance, the Material AppBar seems to have a pretty specific padding value, and if you want to change that, it can be difficult.Is there anything like a Tailwind for Flutter styling? I feel like that will be useful

April 19, 2021 at 03:43PM by buzzerperson
https://ift.tt/3gnOP3c
New post on /r/flutterdev subreddit:

Flutter Tap Weekly Newsletter Week 81 Tutorials, videos, packages, and much more!
https://ift.tt/2QDyegV

April 19, 2021 at 03:06PM by vensign
https://ift.tt/3aoVxBX
New post on Flutter Dev Google group:

App Clips issue
Hi team, Im in troubles to upload an app clip to app store with flutter because the size is bigger than 10Mb . The big problem is that we made the app completly with flutter, and now we can upload to the app store because the new politics with IOs 14. My question is: It's possible to measure the

April 19, 2021 at 04:36PM by Matias Nurnberg
https://ift.tt/3aoQlhp
New post on Flutter Dev Google group:

Flutter medical image/file view DICOM File and doc,docx,pdf view/open in flutter app
Hello, I am new to flutter there is an requirement for me to view medical image (DICOM file /image) how to view/open in my flutter app and View PDF and doc,docx (especially) in android and ios application without using or opening any other document viewer apps. I need to show PDF and doc,docx

April 19, 2021 at 05:44PM by Navnath Hajare
https://ift.tt/2QfLhVR