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

skia docs for drawVertices, drawAtlas, etc
If you are wondering what are the docs for some of the 'dart:ui' functions, like https://api.flutter.dev/flutter/dart-ui/Canvas/drawAtlas.html, https://api.flutter.dev/flutter/dart-ui/Canvas/drawVertices.html and others, you may find looking at Skia's docs - https://skia.org/user/api/SkCanvas_Reference#SkCanvas_drawVerticesand you can even play/experiment in the browser - https://fiddle.skia.org/c/@Canvas_drawVertices(above was the "POP-OUT", next to the Run button)

December 21, 2019 at 07:21PM by malkia
https://ift.tt/34MqSci
New post on /r/flutterdev subreddit:

help whit chats
I would need a hand to understand how to create chats with multiple users, like whatsapp. I can create a chat user: user but a common group doesn't. Do you know how to deal with flutter and firebase?

December 21, 2019 at 08:14PM by Jamesit02
https://ift.tt/2SfV7pq
New post on /r/flutterdev subreddit:

What’s your strategy for locally caching off different types of data? Is it necessary to combine tools such as Firebase Caching with SQLite or is that overboard and better practice is to stick with one?
I realize this is a pretty general question and it depends on the situation. Just wanted to hear your thoughts!

December 22, 2019 at 01:06AM by hungry_for_data
https://ift.tt/36ZryfK
New post on Flutter Dev Google group:

flutter_web console messages?
I've started working with the beta branch to do Flutter development for the web, and I'm encountering a bit of difficulty with debugging. I can set breakpoints and step through the code, but it takes a *very* long time -- apparently the round trip between Chrome and IDEA is super laggy. Anyway, I

December 22, 2019 at 12:58AM by Stephen Beitzel
https://ift.tt/396aozc
New post on Flutter Dev Google group:

Error while testing on the android emulator
════════════════════════════════════════════════════════════════════════════════════════════════════ > > i relive this error while running test of my flutter mqtt code on the android emulator dependencies: > flutter: > sdk: flutter > > # The following adds the Cupertino Icons font

December 22, 2019 at 02:05AM by Dlayz
https://ift.tt/392HtvF
New post on /r/flutterdev subreddit:

Double SliverAppBar in Flutter!
Hey guys,after a huge success in releasing my brand new Flutter app, I've got tons of enquiries on how did I do this custom double appbar in Flutter. Therefore I've decided to write a quick tutorial on how to make it!https://medium.com/@aurimas.deimantas/double-sliver-appbar-in-flutter-95d94627db07​Share your thoughts and struggles on what you'd like me to cover next! :) Hope it helps to boost creation of more beautiful Flutter apps!

December 22, 2019 at 05:53AM by Deimantasa
https://ift.tt/2Zczl7e
New post on /r/flutterdev subreddit:

Android studio emulator isn't showing the colors properly.
The Android studio emulator is not showing the colors specified properly, instead its showing the color lighter then the original color. But if I run it in a physical device , then the color is properly shown.This is an screenshot for comparison between my emulator color and the original color https://ibb.co/tm2sGps .This is the code i used https://ibb.co/fCCp48b .Help me with this issue.

December 22, 2019 at 05:45AM by kisansakthi
https://ift.tt/2sWSEp1
New post on /r/flutterdev subreddit:

Get Assets root path??
Hi, i'm developing an app where you can download images with its url and I want to save this images in the assets to later display them with a webview which is also inside the assets folder, but I need to get the path of the folder, how can I do this??

December 22, 2019 at 05:33AM by fmaldonado6
https://ift.tt/2rimHY1
New post on Flutter Dev Google group:

Gradle build failed to produce an .apk file
After upgrading Flutter from 1.9.7 to v1.12.13+hotfix.5 my application build failed. I got the following exception, However when i open my application in Android module in Android Studio then it runs fine but when i tried to run with Flutter i got that error. [ +5 ms] > Task :draw:assembleFos

December 22, 2019 at 09:58AM by Kamran Ali
https://ift.tt/34L3bkB
New post on /r/flutterdev subreddit:

FlutterForce — Week 57
https://ift.tt/35PBVTh

December 22, 2019 at 12:37PM by flutterist
https://ift.tt/34LfDAW
New post on /r/flutterdev subreddit:

Hive v1.2.0 supports relationships, inheritance and more.
I just published a new version of Hive (key value database for Flutter) and wanted to show you how relationships work:
class Person extends HiveObject { String name; HiveList<Person> friends; Person(this.name); } void main() { var persons = Hive.box<Person>('persons'); var mario = Person('Mario'); var luna = Person('Luna'); var alex = Person('Alex'); persons.addAll([mario, luna, alex]); mario.friends = HiveList(persons); // Create a HiveList mario.friends.addAll([luna, alex]); // Add Luna and Alex to Mario's friends mario.save(); // Persist the changes print(mario.friends); // [Luna, Alex] luna.delete(); // Remove Luna from Hive print(mario.friends); // [Alex] (HiveList updates automatically) } 
You can also find this example in the documentation.The new version also allows abstract HiveObjects and supports inheritance between HiveObjects.

December 22, 2019 at 03:31PM by leisim
https://ift.tt/2So39N7
New post on /r/flutterdev subreddit:

Just pushed get_it V3.1.0
Just pushed get_it V3.1.0 with some bug fixes for edge cases and a new function to reset LazySingletonshttps://pub.dev/packages/get\_itBtw you can now like packages you like :-)

December 22, 2019 at 04:43PM by escamoteur
https://ift.tt/370MLpA
New post on /r/flutterdev subreddit:

Shifting career to CS
Hello wonderful people, I got here asking for an advice from people who work in the industry rn, so as a beginner I only know java now and I just started android/java tutorial by google on Udacity a couple weeks ago and I don't wanna waste time on just android learning Java and then learning Kotlin as it's google's main language now which is a long process, and i wanna do mobile Dev, i asked some people who work in the field and in the market right now and they highly recommend Dart/flutter as they told me it's the future for mobile dev and soon web and desktop, so as a beginner just started in the field and only know java and basic android dev with java, should i just go with Flutter right away right now and master it and don't waste my time with Java android then Kotlin, or keep doing what I am doing with android/java to get some experience and after i do some apps with java move to Dart/flutter?if you're wondering what my goal is, so my goal is landing a job as soon as possible and do some freelance, so time is a main factor for me cause i quit my job to shift my career

December 22, 2019 at 06:02PM by hamohuh
https://ift.tt/2ZgCCCG