Flutter Heroes
25.8K subscribers
272 photos
2 videos
31.1K links
Download Telegram
Reddit: Quickly see which packages have major changes in pubspec.yaml
Given how quickly Flutter packages are evolving, I wanted a quick way to see which of the packages in my project had important updates available, and if so, a fast way to get to the changelog to read about breaking changes.​So I made this quick and dirty Dart script. You run in on your yaml file and it will tell you which packages have updates available and if those updates are major (ex: 0.6.0 to 0.7.0), you get the link to the changelog right there.PubSpecCheck​I setup an alias to it in terminal so that I can just run it in any project I make.

Submitted October 19, 2018 at 01:44PM by Cast-a-Draw
via reddit https://ift.tt/2Aj4FXd
Reddit: How to use graphql_flutter with scoped_model in flutter
I was wondering if it is possible to use scoped_model pattern using the graphql_flutter library to perform operations such as Query, Mutation, Subscription. However, The graphql_flutter library uses flutter widgets to perform these operations which cannot be used in the repository or model of the scoped_model pattern.

Submitted October 19, 2018 at 04:14PM by dopecoder
via reddit https://ift.tt/2EAhUqR
Reddit: Flutter vs Django
Hi!I am new to app dev. I want to build an app for my uni that will allow people to create accounts and post content. It needs to be able to scale, handle big data. Above all else I prioritise user experience. I would also like to do some Machine Learning on the data collected.​Am I better off using Flutter or Django?​

Submitted October 19, 2018 at 04:12PM by ZachWolpe
via reddit https://ift.tt/2S1jBAb
GGroup: Access the PackageManager on an Android device to see if it can launch a URL based on mimetype
We currently have a native Android app that has logic to see if the device can launch correctly a "url" that has a certain mime-type associated with it. The code is below. The question is how can we do the same thing in Flutter? I.e. given a URL with a certain mime-type know if it can be

Submitted October 19, 2018 at 05:39PM by Steven McDowall
via Flutter Dev https://ift.tt/2J5ZPPX
GGroup: Constructor question
From a Flutter demo project class ShoppingListItem extends StatelessWidget { ShoppingListItem({Product product, this.inCart, this.onCartChanged}) : product = product, super(key: ObjectKey(product)); final Product product; final bool inCart; final CartChangedCallback onCartChanged;

Submitted October 19, 2018 at 07:21PM by John Muchow
via Flutter Dev https://ift.tt/2pZc4VE
Reddit: Flutter + Firebase?
Hello, I am currently developing an App for my church and I have a question about hosting using Firebase. I started to build this app as a project and it has kind of scaled outward. We are using it to host mostly the sermons and the media files but also to push notifications as well. Its still just me and the other guy developing it along with 3 of the church employees testing it. I am scared about the scale of Flutter.We anticipate 5000 people using the app, which I think can shoot the price up on Firebase.I was wondering what other options are there?Parse Server?​Thank you, I'm still a noob, so be gentle.

Submitted October 20, 2018 at 04:29AM by EagleBND
via reddit https://ift.tt/2pYXZrj
Reddit: Is it only me or Flutter's widgets are poor compared to Google's Android MDC?
When I code same UI with Android MDC and Flutter Widgets, Flutter design looks really poor compared to Android.

Submitted October 20, 2018 at 04:28AM by westdabestdb
via reddit https://ift.tt/2R50WSN
GGroup: How to enable the source level debug for the release version of flutter engine?
Hi, all, When I build the debug version of engine, and use it in flutter iOS App, it will automatically enable the source level debug function in Xcode, but this does not work for the ios release engine. I try some investigation, for example, add-dlsym and set the source-map in the lldb,

Submitted October 20, 2018 at 01:02PM by Max
via Flutter Dev https://ift.tt/2S0Rnp8
GGroup: Error
I/flutter (29402): ══╡ EXCEPTION CAUGHT BY GESTURE ╞═══════════════════════════════════════════════════════════════════ I/flutter (29402): The following NoSuchMethodError was thrown while handling a gesture: I/flutter (29402): The getter 'content' was called on null. I/flutter (29402):

Submitted October 20, 2018 at 01:10PM by Falak Sabbir
via Flutter Dev https://ift.tt/2P9qnVN
Reddit: Flutter App using TMDB Api
Hello Everyone! This is my first attempt of creating a working flutter app by referring to various resources and tutorials. It is a really silly and simple app created to understand basics of flutter and web Api. I managed to create a barebones working app but I think it is in no way the right method to code flutter projects. I have uloaded the project on Github. It would be really helpful if anyone goes through the project and helps me solve the coding mistakes made, proper use of Stateful and Stateless Widgets.The project link is - https://github.com/psbankar/FindMeAMovie

Submitted October 20, 2018 at 08:18PM by psbankar
via reddit https://ift.tt/2yZJRSX
GGroup: The meaning of MainAxis.min/max
Please I'm new to flutter , and I have been taking some tutorials lately I often use MainAxis.min/max what does it mean please I need clear explanation

Submitted October 20, 2018 at 09:26PM by ibrahim shehu ibrahim
via Flutter Dev https://ift.tt/2NR61Mw
Reddit: What would be your recommended (not minimum) system requirements for Flutter development on a Windows laptop and desktop?
No text found

Submitted October 21, 2018 at 02:45AM by EngineerScientist
via reddit https://ift.tt/2NSz5D6
Reddit: Will Flutter end up supplanting React Native?
React Native very much took things by storm when it came out and as it gained popularity very much supplanting previously leading hybrid mobile development solutions like Phonegap, Ionic, Xamarin, etc. It is currently the top cross platform development option but not everything seems to be going smoothly for it. As of late it would seem that there is a shift going on towards Google's Flutter and even previously big React Native backers like Airbnb and Udacity have turned their back on React Native opting instead to go with native solutions while others deciding to go with Flutter (For example: https://medium.com/reflectly-engineering/reflectly-from-react-native-to-flutter-2e3dffced2ea)The React Native development team seems to have planned a re-architecture of it as an answer to the issues these groups have found and which lead them to turn away from it.One big pain point for React Native seems to be the so called "dependency hell", where every project has to rely on a plethora of third party npm dependencies which constantly break even with the smallest updates. The whole tooling and setup of the framework seems very fragile and as a result developers are constantly having to spend time "fixing" stuff to get their projects working. Several posts in the React Native subreddit have expressed frustration over these issues. From what I gather Flutter does not suffers from this particular problem and it's setup/tooling is rather painless. And in term of app performance Flutter appears to do better as it doesn't relies on a javascript bridge like React Native does (which seems to be the reason for slow performance at times).Could all these be signs that it is the beginning of the end (so to speak) for React Native as the "latest and greatest" and could Flutter end up supplanting it as the framework of choice to develop for both platforms?

Submitted October 21, 2018 at 01:53PM by Egamis
via reddit https://ift.tt/2AkxHWl
Reddit: I wrote an overview blog post on Flutter!
Hey Guys.. I think Flutter looks very cool. I wrote an overview blog post on Flutter, after learning about it and researching it and thought I would post it here.http://oceanairdrop.blogspot.com/2018/10/flutter-mobile-ui-framework.htmlI'm still learning it and have still got a way to go, but I think Flutter has a bright future.​

Submitted October 21, 2018 at 03:49PM by oceanairdrop
via reddit https://ift.tt/2q31XPD
Reddit: A list of Flutter Resources that would help start learning Flutter
A list of Flutter Resources that would help start learning Flutter- Documentation: https://docs.flutter.io/- Github: https://github.com/flutter/flutter- StackOverflow: https://stackoverflow.com/questions/tagged/flutter- Gitter: https://gitter.im/flutter/flutter- Effective Dart Guide: https://www.dartlang.org/guides/language/effective-dart- Dart Tips: https://www.dartlang.org/resources/dart-tips- Flutter FAQ: https://flutter.io/faq/- Flutter Awesome: https://flutterawesome.com/- Flutter Rendering: https://www.youtube.com/watch?v=UUfXWzp0-DU- Flutter Engine: https://github.com/flutter/engine/wiki- Hot Reload: https://flutter.io/hot-reload/- Flutter Inspector: https://dart-lang.github.io/observatory- Dart Style Guide: https://www.dartlang.org/guides/language/effective-dart/style- Flutter Widgets: https://flutter.io/widgets/- Flutter Gallery App Code: https://github.com/flutter/flutter/tree/master/examples/flutter_gallery- Flutter Gallery Android App: https://play.google.com/store/apps/details?id=io.flutter.gallery- Flutter Layout: https://flutter.io/tutorials/layout/- Material: https://material.io- Icons: https://thenounproject.com- Images: https://unsplash.com- Fonts: https://fonts.google.com- Google APIs: https://pub.dartlang.org/packages/googleapis- Async and Futures: https://www.dartlang.org/tutorials/language/futures- Testing: https://flutter.io/testing

Submitted October 21, 2018 at 03:31PM by heshanfu
via reddit https://ift.tt/2yT7RXB