Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

Flutter issue with import
Facing trouble while importing platform_maps_package package. I have included the dependency in pubspec.yaml required and ran the command "flutter pub get". But the problem still persist. Please help me. https://ift.tt/2QVkZEv < https://pub.dev/packages/p

January 07, 2020 at 10:02AM by Aman Kr Sharma
https://ift.tt/2urRxP9
New post on /r/flutterdev subreddit:

Integrating with C/C++ use cases
Support integrating with C/C++ in plugin framework issue is now closed
https://github.com/flutter/flutter/issues/7053I am not a c++ developer but I wonder what kind of libraries and use cases for c/c++ to a Flutter Mobile developer?Someone mentioned that Realm Database could be used directly in Flutter is there any popular use cases?

January 07, 2020 at 11:40AM by amrenew
https://ift.tt/2sTdmql
New post on /r/flutterdev subreddit:

Flutter Firebase for the next billion users.
Get in-depth knowledge on how to incorporate firebase in your flutter application and get access to some of the firebase features like analytics, dynamic links, etc.https://www.skillshare.com/r/profile/Ajani-Eniola/9229560

January 07, 2020 at 11:36AM by ajanieniola
https://ift.tt/2uqKIgK
New post on /r/flutterdev subreddit:

disable fullscreen how?
I tried to use SystemChrome.setEnabledSystemUIOverlays([]) to fullscreen a page but how to disable the fullscreen? Any idea? I tried SystemChrome.restoreSystemUIOverlays(). It is not working. Any other options?

January 07, 2020 at 01:17PM by ccfiel
https://ift.tt/2FroNrV
New post on /r/flutterdev subreddit:

Unit testing with MobX.
https://ift.tt/2ZVo5g6

January 07, 2020 at 02:26PM by irvine5k
https://ift.tt/2T34PMa
New post on /r/flutterdev subreddit:

Flutter IDE Of Choice?
I have been using flutter for about a month now and was wondering if my current IDE, Android Studio, was ideal. I have seen people use VSCode and love it. I was wondering why people chose the IDE they used for Flutter development?

January 07, 2020 at 06:31PM by rubenalvjr
https://ift.tt/39P4liA
New post on /r/flutterdev subreddit:

How build an image app with a good performance?
Hi guys I'm building an app that make upload of an image and apply a filter to it.But the issue is that, if I upload an image with high resolution the app crashes. (Debug mode)How instagram for example can make an app that have all of this and render all quickly?Is possible I make look instagram in performance using flutter?

January 07, 2020 at 06:30PM by adenilson-santos
https://ift.tt/2N3zMvX
New post on /r/flutterdev subreddit:

Flutter App For Large Scale eCommerce App? What are Flutters Shortcomings (specifically for Native features)
Hey All,So I work for a fairly large E-comm company, and my dev partner and I have been tasked with investigating our mobile development options so that we can build the companies first app.We both have been learning, and love, Flutter but we're a bit worried about some of its shortcomings, namely its lack of support for certain native features.The most glaring thing we can think of is both Google / Apple Pay. It seems there is no easy integration for this (yet), as well as some other native features such as maps.We would love some insight from experienced mobile devs as to if Flutter might still be at a stage where it's not flexible enough to be used at a large scale for e-comm.If we needed to integrate native features into our flutter code, would it just be easier / more efficient to start with Swift / Java from the get-go?Any thoughts around this? Apologies if I'm not being specific enough!!TLDR; Flutter is great, but does its lack of native feature support prevent it from being reliable at scale? (Apple pay/google pay, maps, etc...) If we needed to integrate native features into our flutter code, would it just be easier / more efficient to start with Swift / Java from the get-go?

January 07, 2020 at 07:57PM by hambrochill
https://ift.tt/2ZXQhyO
New post on Flutter Dev Google group:

Proposal: Material Theme System Updates
Proposal for a significant update to the Material theme system: flutter.dev/go/material-theme-system-updates. The overall goal is to make the system easier to use by making the API and its semantics consistent and by shedding vestigial API that's of limited use, or no longer part of the current

January 08, 2020 at 12:34AM by hansmuller
https://ift.tt/30aaSAh
New post on Flutter Dev Google group:

Remove FAB Accent Theme Dependency
Proposal for a small change to the FloatingActionButton's connection to the overall Material theme: flutter.dev/go/remove-fab-accent-theme-dependency. This is a small part of flutter.dev/go/material-theme-system-updates; a trial run-though of the change process. If you're interested, please add

January 08, 2020 at 12:40AM by hansmuller
https://ift.tt/36zSjrk
New post on Flutter Dev Google group:

Using Provider with Forms ?
Hello all, I just saw a video where the dev-guy substitutes a StatefullWidget for a StatelessWidget and uses Provider to deal with state management. awesome package. I'm wondering here. What if I had Page with StatefullWidget containing a Form. would be possible/recommended to remove the

January 08, 2020 at 02:35AM by Cristiano
https://ift.tt/2Qw7dcA
New post on /r/flutterdev subreddit:

Flutter "App Widgets" for Launcher?
Just curious. Has anyone managed to find a way to do this?

January 08, 2020 at 05:28AM by KanKanK
https://ift.tt/36BazAH
New post on Flutter Dev Google group:

Google Maps issue - Flutter
The app works fine. But the map is missing. What should I do? Please help.

January 08, 2020 at 08:02AM by Aman Kr Sharma
https://ift.tt/36AkrL9
New post on /r/flutterdev subreddit:

Simple self-tracking app built with Flutter
Built a simple self-tracking app with Flutter; you can find the source code (and app store links) at https://github.com/zenobase/zenobase-durations.BackgroundI had looked into Cordova a few years ago, but it ended up not being worth the trouble compared to just writing a progressive web app. Also looked at React Native early last year, but felt like I wouldn't get where I needed to without writing native code, which was too much trouble.When I came across Flutter, almost everything I could think of seemed to have been taken care of, and I felt I could get a simple app done without spending weeks creating custom build scripts, figuring out how to test my code, manage dependencies etc.Notes - Settled on using the redux pattern for state management, using ReduRx. Having used event sourcing on backend projects, this approach felt quite natural. - Data is stored locally using sembast. While data is only read on startup, changes are appended after every state change (via a "middleware" component). - Cloudmagic made setting up CI builds (incl iOS) about as quick and easy as can be. - Started out using IntelliJ IDEA (since I had that set up already) plus Flutter and related plugins, but switched to Android Studio when I realized IDEA was still missing functionality. - Dart is quite nice (though I'd still rather be using Kotlin), see this discussion. - Localization seemed overly complicated (plus there's more than one way to do it)... - Not really a Flutter issue, but figuring out the Google Play and App Store rules and workflows, plus collecting screenshots and descriptions for the store listings for multiple languages and devices turned out to be a bit more tedious than expected.

January 08, 2020 at 08:58AM by ercjn
https://ift.tt/39LpSst
New post on /r/flutterdev subreddit:

pushy notifications
did any one used Pushy notifications in flutter ?

January 08, 2020 at 10:21AM by omarsherifz
https://ift.tt/2QUX3Bs
New post on /r/flutterdev subreddit:

Looking for Flutter Devs in Mumbai (remote possible)
Hi! We are students from IIT Bombay, Mumbai, working on a startup in Ed-tech domain. We are looking for developers with good experience in developing production scale flutter app. Knowledge about firebase is a plus. The developer can work on a project basis, if preferred. We prefer devs around Mumbai but are open to remote options. If you are interested or can refer someone, please comment here or DM me.

January 08, 2020 at 12:33PM by dx8xb
https://ift.tt/36vd3R7