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

Useless Sentry Flutter web
Hi Everyone!​Anyone use Sentry for Flutter web error report? Now because minification error report is useless because can't read it.https://github.com/flutter/flutter/issues/37875​How to get good error report for Flutter web?

May 12, 2020 at 09:52AM by Flutter_Dev
https://ift.tt/3fIJ90A
New post on /r/flutterdev subreddit:

Database ORMs [Moor Plugin]
Hi,I'm coming from Java Android App development. I'm currently learning Moor ORM which is closest to 'Room' ORM in Java as I have read it many articles, but to be honest, I'm finding it a bit tough to comprehend than Room. Moor has a lot of boiler plater code compared to Room. Do you think is there any good alternative to Moor for DB ORMs?

May 12, 2020 at 10:32AM by sarabjot294
https://ift.tt/2WI40Zq
New post on /r/flutterdev subreddit:

A complete thought process on how to convert the design into code using Dart + Flutter
https://ift.tt/2WpmnDF

May 12, 2020 at 11:53AM by mkobuolys
https://ift.tt/2SWQsIh
New post on /r/flutterdev subreddit:

Tip #35 Implicit Interface of class
Did you know you can extend and implement a class in Dart?
No need to create `IInterface` to mock a `class`.
No need to extract `IInterface` as Contract / Protocal
Every class implicitly defines an interface containing all the instance variables, methods getter and setters.
1. extends -> must override abstract methods, other methods and variables override optional. i.e can inherit parent's behavior.
2. implements -> Every methdos and variables must be overriden. i.e. can't inherit parent behavior
 Dart has implicit Interface of every class class A { //Optional @override for 'extends' && must for 'implements'. var name; //Optional @override for 'extends' && must for 'implements'. void normalMethod() => print("B -> Normal Method"); } abstract class B{ //must @override in both 'extends' and 'implements'. void abstractMethod(); } //Non abstract class C extends A {} //  class C implements A {} // Must override name & normalMethod() class C extends B {} // Needs to override `abstractMethod()` class C implements B {} // Needs to override `abstractMethod()` //Abstract Child abstract class C extends A {} //  abstract class C implements A {} //  abstract class C implements B {} //  abstract class C extends B {} //  
See Daily posts on this threadContribute and give feedback

May 12, 2020 at 11:16AM by erluxman
https://ift.tt/2xZxGsM
New post on Flutter Dev Google group:

Is there any plugin available for webview which supports WKWebview.
I tried some of the plugins, all of them are rejected by app store by giving the reason usage of deprecated api(UIWebview).

May 12, 2020 at 01:12PM by Jeeva V
https://ift.tt/35SD798
New post on Flutter Dev Google group:

Regarding native pdf render package
Hi friends,Can anyone help how to use native pdf render Package with code example.I am new to use dart and flutter.Thanks in advanceSent from my Samsung Galaxy smartphone.

May 12, 2020 at 01:48PM by sivaitbrocks
https://ift.tt/2WPikPN
New post on /r/flutterdev subreddit:

Video Livestreaming API Suggestions?
Hi everyone! I've been looking around for some reliable API with regards to Video Livestreaming (1 to many) and came up with the following:Wowza: https://pub.dev/packages/flutter_wowzaAgora: https://github.com/AgoraIO-Community/Agora-Flutter-Quickstart/Zego: https://pub.dev/packages/zegoliveroom_pluginWebRTC: https://github.com/cloudwebrtc/flutter-webrtcJust wondering if anyone else has used the above or would recommend me trying out something else.I'm planning to build a livestreaming platform (similar to twitch/facebook live) and also I would like the cost of maintaining it to be minimised. Thank you!

May 12, 2020 at 01:35PM by joshuaflutterguy
https://ift.tt/2zrdnVn
New post on Flutter Dev Google group:

EXCEPTION CAUGHT BY IMAGE RESOURCE SERVICE
Hello i am unable to add images to my flutter application already gone through documentation couldn't find anything wrong attached is all the screenshots of the error kindly help asap

May 12, 2020 at 02:18PM by Satyam Kumar
https://ift.tt/3bl6WAl
New post on /r/flutterdev subreddit:

App Feedback Thread - May 12, 2020
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

May 12, 2020 at 02:33PM by AutoModerator
https://ift.tt/3boMTkD
New post on Flutter Dev Google group:

Doubt on how to build pages when clicked on grid view.
I have grid view of 6 cards , and when we click/tap on either card it should take me to other page where I want page slider which consists of cards(horizontal scroll direction). The question is whether I should build separate 6 pages for it or how to reduce manual work. I have same type of

May 12, 2020 at 05:07PM by Orchid O
https://ift.tt/2YVQYdB
New tweet from FlutterDev:

🔌🌐How To Write a Flutter Web Plugin: Part 2

Learn how to refactor your plugin to use modern, best practices. Plan to add web support to one of the plugins owned by the Flutter team?

Learn more here ↓ https://t.co/XZNbihTvYD— Flutter (@FlutterDev) May 12, 2020

May 12, 2020 at 06:03PM
http://twitter.com/FlutterDev/status/1260239158750011393
New post on /r/flutterdev subreddit:

From Flutter to React
I love Flutter and Dart, but I need to make web pages and it has to be production ready. Flutter is much simpler, but I need a production ready product.My problems with React is the need for CSS and understanding all the HTML elements and their proprieties. I never worked so much with web or React, so I get easily confused...Anyways, I want to know how the best way to 'transfer' my knowledge to React. The biggest point in Flutter for me is that I can create layouts extremely fast. With this in mind, I have this questions if you can answer me:In Flutter I create widgets with its own style, then I reuse it. In react I know we also have components, but should I use a separate CSS file instead of inline styles? It seems so much simpler to make all inline and use constants. Is Styled Components created to help with this?Everything else is kind of the same correct? State management, importing libraries, etc.Any more comments are greatly appreciated!

May 12, 2020 at 06:40PM by ForeverInYou
https://ift.tt/2WRAz7c
New post on /r/flutterdev subreddit:

running flutter in emulator (VCcode)
i use vs code (imac IOS) to write my code but once i debug and run the code the emulator take tooooo long to launch and fail to run the code, everytimedoes anyone have a way to solve this? i’m trying to learn but i’m starting to quite cuz of this.. thanks!

May 12, 2020 at 09:10PM by jwxhr
https://ift.tt/2YXIGSg