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

Need brutally honest opinions about my package: Postor
Hi guys, I just published my package called Postor. It's basically a wrapper around Dart's http package, with additional features such as manageable request cancellation, request policies (timeout & retry attempts), and easier multipart requests. Any opinions about my package are welcome😃!Link here postor

August 21, 2021 at 05:19PM by FroedEgg
https://ift.tt/3sIUwwz
New post on /r/flutterdev subreddit:

Tips for a newly hired Flutter developer
I am starting on Sept.1 and was told by my supervisor-to-be on the Slack training channel they set up that they used the following libraries in their most recent project:riverpodfreezedbuilt_valueI read a bit and know they have to do with immutability and facilitating ease-of-serialization to JSON of models but wondering if there are any specific resources I should be looking at.Also, as this is my first development job where I am working on a team, what are some things to keep in mind? I am reading the Git Pro book to make sure I don't do anything that messes up the commit history or repo in general (when working alone I really only used git pull/commit/add/push) and about branches.Additionally, when asked to write a module, function or otherwise any coding, should I try emulate the style in the rest of the code base as much as possible? My first thought is to do so, trying to emulate how they do things at least for a few months or unless I am asked to come up with some other ways specifically by my supervisor.Please share your thoughts.

August 21, 2021 at 07:48PM by webNoob13
https://ift.tt/3mjFZ9l
New post on /r/flutterdev subreddit:

Any real company with real flutter apps to showcase?
I looked up official website. Looks like majority of apps there are just.trivial apps that are not important or not popular or not of complex functionalities.Apps with only one platform using Flutter which is kinda funnyMaybe it is because flutter is too new or other reasons?So could someone point out a couple of actual good apps made with Flutter? Examples: apps like Facebook, Instagram, uber, DoorDash, youtube, google maps……just give me anything…..(eBay motor app doesn’t count)

August 21, 2021 at 11:13PM by ynkm1692
https://ift.tt/2WdQD6C
New post on /r/flutterdev subreddit:

Flutter web and hot reloading
Flutter apps cannot be hot reloaded when targeting web. Are there any plans to make hot reloading possible on web platform? What are the reasons that make hot reloading more difficult on web than on other platforms?It's a little counter intuitive since browser runtimes are very dynamic. Something like hot reloading should have been easier to implement on web, but evidently it wasn't.

August 22, 2021 at 12:07AM by CabbageJoke
https://ift.tt/3z8Kask
New post on /r/flutterdev subreddit:

Is there any tools or any better way to debug flutter code error?
The error I see sometimes I can't figure out where it happened.Sometimes the error code refers to the internal flutter widgets instead of the code I wrote.I feel there may be better ways to debug these errors that I am not familiar with.

August 22, 2021 at 04:23AM by milanpoudel
https://ift.tt/3j71ecI
New post on /r/flutterdev subreddit:

gtk package | Implementing most of the widgets from gtk widget library to flutter
https://ift.tt/3D6qVBU

August 22, 2021 at 05:19AM by Adventurous_Author32
https://ift.tt/3sBbHjD
New post on /r/flutterdev subreddit:

A new JS plugin
A JS plugin using quickjs. It is very easy to use, and it can establish a binding relationship between dart and JS object.package:js_scriptFuturesDefine JS class and establish binding relationship.dart // Define a JS class var classInfo = ClassInfo<TestClass>( newInstance: (_) => TestClass(), fields: { "field": JsField.ins( get: (obj) => obj.field, set: (obj, val) => obj.field=val, ), }, functions: { "method": JsFunction.ins((obj, argv) => obj.method()), "wait": JsFunction.ins((obj, argv) => obj.wait(argv[0])), } ); // Send the class info to JS context. script.addClass(classInfo); // Create a JS object and bind to a dart object. JsValue jsValue = script.bind(obj2, classInfo: classInfo);Using a Future as Promise, and using a Promise as Future.dart JsValue jsPromise = script.eval(""" new Promise(async function(resolve, reject) { await obj.wait(3); resolve("over"); }); """); var res = await jsPromise.asFuture;Support npm pack and FileSystem```dart // New a JS context with a AsarFileSystem. JsScript script = JsScript( fileSystems: [ AsarFileSystem(await data), ], );// require a mpn pack from asar file. var ret = script.eval(""" const md5 = require('md5'); md5('hello'); """); ```Be free to open a issue, if you have suggestion or questions.

August 22, 2021 at 06:28AM by gsioteam
https://ift.tt/3B1vhbU
New post on /r/flutterdev subreddit:

Udemy Course for Flutter 2.0 and Dart Null Safety
I am trying to find a course which is comprehensive on these two. I am struggling. Any suggestions?

August 22, 2021 at 06:19AM by DowntownMessNP
https://ift.tt/3kg0gKw
New post on /r/flutterdev subreddit:

FlutterForce — Week 134
https://ift.tt/3gpl4OC

August 22, 2021 at 08:55AM by flutterist
https://ift.tt/3sEp2rC
New post on /r/flutterdev subreddit:

People who use something other than firebase for a flutter app backend, what do you use? And where did you find the resources to learn how to?
I am having serious trouble finding learning resources for anything other than firebase and maybe python, but even then it's quite limited. I really don't want to be locked into Google's firebase and would like to have my own server. Anyone who uses ruby btw?

August 22, 2021 at 01:00PM by Scratch9898
https://ift.tt/3B6jKbl
New post on /r/flutterdev subreddit:

A Productivity UI kit built with Flutter
Hello all, I made a productivity UI kit with Flutter and would like to share it with the community. Feedbacks and comments to improve it are warmly welcomed. Please find below the links to GitHub and google play store respectively. Github ==> https://github.com/Davies-K/Taskez. Play store ==> https://play.google.com/store/apps/details?id=com.taskez.io

August 22, 2021 at 12:29PM by Davies-Kwarteng
https://ift.tt/3mjxVFL
New post on /r/flutterdev subreddit:

Has Anyone started Fast Prototyping with Dashbook and Golden Toolkit?
Seems to me that I could combine both Dashbook and Golden Tookit to fast prototype screens as it integrates mocking the screen first with the way we should mock widgets first via unit testing while at same time giving an accurate visual indication of the tests.

August 22, 2021 at 01:54PM by fredgrott
https://ift.tt/2W7glKB