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

Job interview preperation
Hello ! I have a job interview tomorrow, and was hoping to get some advice, or personal experience in an interview for a Flutter/android kotlin position. Is there anything that made the difference for you? Also if this isn't the place for this type of question please refer me to a better place!

January 14, 2021 at 06:38PM by bpbushman
https://ift.tt/3bDH6LV
New post on /r/flutterdev subreddit:

Non-UI Mobile Development
From my understanding, flutter is basically a UI framework and is able to achieve non-UI activities by use of plugins. Does this mean that one way or another I'll have to learn platform languages like Kotlin to be able to fully take advantage of a platform's (like Android) capabilities?

January 14, 2021 at 08:38PM by agwatta
https://ift.tt/3ssOkbF
New post on Flutter Dev Google group:

Flutter: How to redirect to the below page using onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) { return MainPage(); }
How to redirect to the below page using onPressed: () { //debugPrint("Add New Device Cattegorry"); Navigator.push(context, MaterialPageRoute(builder: (context) { return MyHomePage(); } ) ); // }, I want to redirect from a page suppose "FirstPage.dart" to " MainPage.dart" import 'package:CWC

January 14, 2021 at 09:25PM by shravan kumar Pottala
https://ift.tt/3bzY3qy
New post on /r/flutterdev subreddit:

Could you recommend a decent Flutter BLE (Bluetooth Low Energy) package?
Hey, everyone.Soon I will start an IoT project which key concept is communicating with peripherals using the BLE (Bluetooth Low Energy) protocol. I searched for some BLE packages in pub.dev and found this one: https://pub.dev/packages/flutter_ble_lib. I really liked the idea that this package also has a dedicated emulator - https://pub.dev/packages/blemulator, which provides testing capabilities without having the actual hardware (that would also be the case for me in the project).Does anyone used it and have any feedback? Have you used any other Flutter BLE package which you could recommend?

January 14, 2021 at 10:21PM by mkobuolys
https://ift.tt/3oMel3p
New post on /r/flutterdev subreddit:

Open source examples of "real" Flutter apps with good test coverage?
Does anyone know of any open source Flutter projects that demonstrate good testing practices? Something more than a basic demo app -- I'd like to see good examples of tests "in the real world".

January 15, 2021 at 05:06AM by doppio
https://ift.tt/3icWUq6
New post on Flutter Dev Google group:

Supporting different font that I get from backend
Hi guys, We have a flutter app in production, sometimes our back-end sends data in different language. Maybe Greek or Portuguese. But in that case the words get defformatted and only random character is shown. Please help how can we solve this. This is very critical thing. Thanks.

January 15, 2021 at 06:20AM by Krishna gopal pal
https://ift.tt/3qnCtcQ
New post on Flutter Dev Google group:

How to se that the uploaded images ,pdfs and text items remain constant or permanently until deletion
Hi, I have a application where I am uploading text data, images and pdfs data through a form submission. Different forms has different uploaded data. I want to see that if the user opens the application second time or next time, the images and text remain as it and show(retrieed)

January 15, 2021 at 06:51AM by shravan kumar Pottala
https://ift.tt/39wmYsp
New post on Flutter Dev Google group:

Providing Hiv Box cached content the firestore stream
On Flutter Web, I have a stream from firestore which displays the current messages in a collection but when the internet is not available I can't have access to those messages from that stream. I Decided to use a hive box to cache the messages and return them when no internet is available. I

January 15, 2021 at 07:28AM by Fuh Austin Ambe
https://ift.tt/3sm7zUd
New post on Flutter Dev Google group:

Not applicable for the main.dart aplication
can anyone please help me with this error my emulator is showing error that it is not applicable for main.dart configuration.

January 15, 2021 at 09:03AM by Shubh Gupta
https://ift.tt/3oMp6Tg
New post on /r/flutterdev subreddit:

Flutter Shopping App prototype: Lessons learned
https://ift.tt/3imXAJK

January 15, 2021 at 09:47AM by mkobuolys
https://ift.tt/3qqZJ9N
New post on /r/flutterdev subreddit:

Providing operating system compatibility on a large scale (Flutter Team)
https://ift.tt/3qnmZWp

January 15, 2021 at 09:46AM by Elixane
https://ift.tt/3qnPHGu
New post on /r/flutterdev subreddit:

Can we speak up about the poor quality of the official Google Maps plugin (google_maps_flutter)?
We are currently porting native app to Flutter, its basic feature is map view with a lot of markers (3000 to be precise). We decided to go with the official Google Maps plugin (google_maps_flutter) as it was "production ready in November 2020" - however, after a month of working with it we are terrified of its poor quality and stall in its updates lately. Some issues that we faced:Markers on iOS are added on MainThread - it is not documented and priority is low, it took us days to debug why we have frames drops on opening MapView on iOS and not on Android. It really affect user experience with whole app and Flutter itself as whole app freezes.Heatmaps are not added - PR is available since few months, there is still some work needed on it, also open issueMarkers clustering PR is ready for almost 2 years and not merged as it waits review, also open issue for itOptimization of rendering only currently visible Markers is not in the plugin (however it is in the native one)Tile support PR is available since almost 2 yearsInitialization of MapView in background was not merged due to not signed CLA'sChange of map padding doesn't work properly on iOSReloading map when going back to the same screen - also map uses MapView and not MapFragment which could improve performanceKnown stackoverflow on Android with a workaroundTo be honest I really appreciate everyone's work on this plugin but there are many very noticeable issues (both developer and user facing) that are not fixed and even existing PR seems to be stuck. It seems like most developers moved to smaller-not-official plugins that supports clustering or heatmaps which are forks of the official plugin to make it work for their app.To be honest, after such experience with this plugin we are considering writing our own plugin to handle in good manner things we need - abide it will be a lot of work that is hard to correctly estimate at first. What is your approach in maps-based apps for Flutter? It seems like the map plugin doesn't get love its deserves and community work goes into smaller fork-plugins of it instead of main repository.PS. Mapbox is not an option due to high cost per user and flutter_map plugin has its set of issues or support for web is not production-ready.PS2. Yes, of course we can contribute to google_maps_flutter - however, it seems slow with review/merging with even 2 years PR so it isn't a good sign.

January 15, 2021 at 11:51AM by primosz
https://ift.tt/35IkzcR
New post on /r/flutterdev subreddit:

Alternatives to Firestore supporting range filters on different fields and geoqueries?
I'm helping someone building a chat application that needs a search feature with multiple fields.It seems like Firestore doesn't support range filters on different fields:https://firebase.google.com/docs/firestore/query-data/queries
So I wanted to get an idea about other remote databases that would support this along with geo-queries, but still be easy to use. Ideally I'd like a solution that already has a Dart SDK, supports realtime capabilities, and has similar pricing to Firestore (pay per use).Any suggestions?

January 15, 2021 at 12:44PM by bizz84
https://ift.tt/38Jf2ES
New post on /r/flutterdev subreddit:

Flutter
Any recommendation for flutter real time plotting ?

January 15, 2021 at 12:39PM by shashimal4
https://ift.tt/2XIKnl2