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

An in-depth dive into implementing swipe-to-dismiss in Flutter
https://ift.tt/2PmW3GP

October 26, 2019 at 04:02AM by wilburtx9
https://ift.tt/32Q3pGT
New post on /r/flutterdev subreddit:

Read about Box Decorations, BLoC, Provider and more in this week's installment of Flutter Discovery
https://ift.tt/2pfTEDo

October 26, 2019 at 01:55PM by DecimalSaxon
https://ift.tt/368hy4f
New post on /r/flutterdev subreddit:

Happy Diwali To Everybody. Found out a special video related to Flutter and Diwali. https://ift.tt/2PmYYiQ
https://www.youtube.com/watch?v=8gtwa9DgZaI

October 26, 2019 at 01:05PM by maadhav2001
https://ift.tt/2pXzspD
New post on /r/flutterdev subreddit:

What are badges, how do I get them and introducing the ‘Dart Badge Maker’ made with Flutter Web! (If you hate Medium, check out the comments for a GitHub link, it's open source!)
https://ift.tt/2MS3eW9

October 26, 2019 at 04:09PM by modulovalue
https://ift.tt/31Jp9CY
New post on /r/flutterdev subreddit:

Can I use ChangeNotifier and Provider to separate business logic on single page?
Hi Everyone!I am beginner Flutter developer. After I read https://flutter.dev/docs/development/data-and-backend/state-mgmt/simple I love Provider and ChangeNotifier. I use for state management.But I am also now use this to separate business logic from UI on single page - not just for pass state down widget tree.For example if I have page with live data on page (not share with any other page) I separate data into Model:class Model extends ChangeNotifier {…}Then I provide to my page with:Widget build(BuildContext context) {return ChangeNotifierProvider<Model>(builder: (_) => Model(),child: Consumer<Model>(builder: (context, model, _) {return Scaffold(Is anything wrong with this?I use because is simple and I can use stateless widget and I can update widget with value (with notifyListeners()). I can also use ChangeNotifierProxyProvider for update Model with other value from Model2.Thanks for advice!

October 26, 2019 at 05:38PM by Flutter_Dev
https://ift.tt/2ojPMke
New post on /r/flutterdev subreddit:

VSCode theme in IntelliJ?
Does anyone know if there is a theme for IntelliJ that has the color scheme of VSCode? The same style as Visual Studio. Thanks

October 26, 2019 at 08:24PM by twig4567
https://ift.tt/2pU3uLf
New post on /r/flutterdev subreddit:

Any image processing library for dart?
Hey guys, I've been looking for an image processing library for dart for using in my flutter app, a library like open cv in python, but I couldn't find any solution. Do you guys know if this library exists or not? I don't want to run native java codes in my app( although if something like this exists, it's definitely written in native java, which isn't a problem). I just need a resizing and a rgb to grayscale and a thresholding function for my app, but I want it to be very optimized and fast.I would appreciate any help and suggestion. Thanks a lot.

October 26, 2019 at 11:23PM by parsagray
https://ift.tt/36bgDzV
New post on /r/flutterdev subreddit:

Is there a signal strength widget for flutter?
Something like the image here​https://imgur.com/a/AckHVaP

October 27, 2019 at 03:33AM by Dazza5000
https://ift.tt/2WhZPCR
New post on /r/flutterdev subreddit:

Any barcode scanner library?
I'm new to Flutter, so pardon if some of my assumptions is bad.I'm looking for a library that offers barcode scanning. The use case is that I would have home page and search result page. From the home page, user can type item name manually, or search by barcode scanning. Once they click search or finished scanning, it will navigate to search result page.I've been playing with barcode_scanning library, while good, I have a problem with the navigation. From home page, if I go to the scanning page, I can't navigate directly to search result page. It will go back to the home page screen briefly before the navigation go to the search result page. I assume this is because the scanning page was 'layered' on top of the home page, so when the Navigator wants to push, it needs to go back to the home page first before it can push the next page onto the stack. So... That's a limitation. Or I'm just too noob to figure out how.Is there a library that does barcode scanning by Widget, so that I can put that onto a page? That way, I don't have to see the home page after scanning is finished.

October 27, 2019 at 04:43AM by redfournine
https://ift.tt/2PmgB2h
New post on /r/flutterdev subreddit:

Http Requests
Hello everyone, please i just made an app call to the pixabay api to get photos by querying a keyword from a form. I got the data back but now I want to be able to click on a single photo and view it's other properties like "photographer, views, comments " . Please how to do I go about it?

October 27, 2019 at 08:00AM by Dugba
https://ift.tt/2Wi4d4R
New post on /r/flutterdev subreddit:

FlutterForce — Week 50
https://ift.tt/2JFyTrV

October 27, 2019 at 09:05AM by flutterist
https://ift.tt/2NhaXMf
New post on /r/flutterdev subreddit:

#22 Drawer Flutter Widget
https://youtu.be/KYXuwMrDXgY

October 27, 2019 at 10:25AM by systechdevelopers
https://ift.tt/36jaPES
New post on /r/flutterdev subreddit:

Best practice for page routing in flutter?
I was wondering if there is a best practice on how to organize the page routing.Maybe I am wrong, but after reading the page routing example on flutter.dev I feel that it would be better not to initiate routing within the routes themselves, but have a central class that manages which route to display.In Android, e.g. this could be a FragmentManager located in the MainActivity, which manages which fragment to show.If anyone had a link to an example on how to organize the routing, or something similar, this would be very valuable to me.

October 27, 2019 at 10:44AM by lazy_Ambitions
https://ift.tt/2PtDqkV