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

Use state_notifier with flutter_hooks with hooks_state_notifier.
https://ift.tt/3AsvRif

October 09, 2021 at 09:23PM by TarekkMA
https://ift.tt/2Yzn5RY
New post on /r/flutterdev subreddit:

Introducing dart_holodex_api
A Dart wrapper for accessing the Holodex.net API.https://pub.dev/packages/dart_holodex_apiHolodex is a website dedicated towards your favorite vtubers, with features like clips management, stream TL, multi-view, and music-centric playback. Note that the API does not currently provide access to stream TL, multi-view, or any account related features.Currently the API supports:Get a video by its IDGet a list of videosGet a list of live videosGet a channel by its IDGet a list of channelsQuickly Access Live / Upcoming for a set of ChannelsGet Videos Related To ChannelGet Clips of a VTuberGet Collabs that mention a VTuberGet Videos From ChannelGet a single Video's metadata (can also return comments with timestamps)Search For VideosSearch For Videos With a CommentNote that I am not a Holodex dev, so any API feature requests should go directly to them

October 10, 2021 at 02:02AM by DanielN10
https://ift.tt/3loJhrc
New post on /r/flutterdev subreddit:

eBay motor app - jank
I read about fresh install jank. I tried out eBay motor app. Even after using it for a while, I can clearly see multiple problems. Why is it so?The page sometimes jump a bit while scrolling.The text is producing “double images”. Or a kind of motion blur effects that hurts my eyes. I think it is definitely not rendering at 60fps

October 10, 2021 at 07:43AM by ynkm1692
https://ift.tt/3Dwcwi1
New post on /r/flutterdev subreddit:

Flutter as a first Programming language. (dart)
When I started with Flutter, I remember it was so hard, I had never coded before in my life and never went to Computer Science. I had to start from absolute scratch and it was such a nightmare. I'm not sure if other people are/were in the same situation I was (Trying to learn Flutter without any programming experience).I remember like if it was yesterday, trying to learn all of these words (constructor, class, method, getter, argument, child, children, empty function, etc.). I was so hard and long to learn.Has anyone here also learnt Flutter (dart) as a first programming language?What is/was your biggest problem/pain for learning Flutter?

October 10, 2021 at 10:32AM by fluttermapp
https://ift.tt/3amrudZ
New post on /r/flutterdev subreddit:

FlutterForce — Week 141
https://ift.tt/3uXLwEY

October 10, 2021 at 11:27AM by flutterist
https://ift.tt/3ltw4NI
New post on /r/flutterdev subreddit:

[Flutter Web] Loading screen makes a world of difference 🚀
Hey all,I have posted earlier in the Flutter Vancouver reddit post that I have created the website using Flutter Web for our Flutter Vancouver group. You can view the website here - https://fluttervancouver.ca.One of the biggest concerns I had was with the initial loading times and I recently came across this medium post which comes with a solution to fix the problem. Its a very simple fix and I wish I came across this sooner. I incorporated the change into the website in this commit and the experience is much much better now.I think Flutter Web is getting better and also with the recent announcements that Flutter will be having a default loading screen(I can already see one when debugging with flutter run), I think Flutter Web will be more than production ready. 🚀🔥I am interested to know what your thoughts and feedback are and what do you think about the loading screen.Cheers!

October 10, 2021 at 06:17PM by wisecrack2
https://ift.tt/3oPcPQU
New post on /r/flutterdev subreddit:

my first released app
Hi, I'm happy to announce my first ever released app on play store. Tell me what you guys think about it. soon I will release code on Github but before that, I want to write decent read me file and comments. https://play.google.com/store/apps/details?id=workout.notes_app

October 10, 2021 at 08:25PM by Delicious_artS
https://ift.tt/3AtGwsS
New post on /r/flutterdev subreddit:

How does the Widget tree inspector get the Widget tree details?
I need to build something similiar for a current project but don't know where to start with it. My first idea would be using Keys maybe but idk if thats enough.

October 11, 2021 at 03:35AM by Mesota22
https://ift.tt/3oUXnTr
New post on /r/flutterdev subreddit:

Given the interest in the last post, the high-level memory-safe binding generator for Dart/Flutter <–> Rust is open-sourced now ;)
Since the interest my last post and this post asking whether interested in open-sourcing this, I have spent some days polishing it and it is published now!GitHub repo: https://github.com/fzyzcjy/flutter_rust_bridge----------------------Following is a very brief introduction for the lib:Want to combine the best between Flutter, a cross-platform hot-reload rapid-development UI toolkit, and Rust, a language empowering everyone to build reliable and efficient software? Here it comes!FeaturesMemory-safe: Never need to think about malloc/free.Type support: Unlike low-level binding generator which only provide primitives and pointers, this package provides things like Vec<u8>(Uint8List), Vec<T>(List<T>), any custom struct(class)s, and even recursive structs (e.g. a tree node).Zero-copy: Pass big array of bytes from Rust to Dart without any memory copies.Async programming: Simply call functions directly in main isolate (thread) of Dart/Flutter, and Rust code will not block the Flutter UI.Easy to use: All you need to do is write down your Rust code. The code generator will do everything and expose an API in Dart/Flutter's style.Lightweight: This is not a huge framework that includes everything, so you are free to use your favorite Flutter and Rust libraries. <sub>For example, state-management with Flutter library (e.g. MobX) can be elegant and simple (contrary to implementing in Rust); implementing a photo manipulation algorithm in Rust will be fast and safe (countrary to implementing in Flutter).</sub>Easy to code-review & convince yourself: This package simply simulates how human beings write down boilerplate code. If you want to convince yourself (or your team) that it is safe, there is not much code for you to look at. The runtime is only hundreds of loc, and the generated code follows simple patterns. No magic at all! (More about safety concerns.)Pure-Dart compatible: Despite the name, this package is 100% compatible with pure Dart. It does not require anything specific to Flutter. See this pure-Dart example.Simple exampleWhat you write down (in Rust):
pub fn my_function(a: MyTreeNode, b: SomeOtherStruct) -> Result<Vec<u8>> { ... do my heavy computations ... } // you can use structs (even recursive) pub struct TreeNode { pub value: String, pub children: Vec<MyTreeNode> } 
With bindings automatically generated, you can simply use the following API in Flutter/Dart. Nothing more.
Future<Uint8List> myFunction(MyTreeNode a, SomeOtherStruct b); 


October 11, 2021 at 04:52AM by fzyzcjy
https://ift.tt/3oTLKMj
New post on /r/flutterdev subreddit:

Flutter Maps
I have 2 Maps and i want to match the corresponding Key values:Map 1 : [{id: 0, value: 6}, {id: 1, value: 50}, {id: 2, value: 30}] Map 2 : [{id: 0, value: 3}, {id: 1, value: 4}, {id: 2, value: 5}]for example id 0 in Map 1 has a relationship with id 0 in Map 2, how best can i match these

October 11, 2021 at 05:15AM by Imaginary_Sound_9817
https://ift.tt/3mJcCfc
New post on /r/flutterdev subreddit:

Announcing Appwrite Flutter SDK 2.0 with built in Response Objects
Hey all, we are pleased to announce that we have just released the 2.0 version of Flutter SDK of our open source firebase alternative, Appwrite. This version comes with built in response object support. Each service will now return a structured response object on success and throw an Appwrite exception on failure.https://pub.dev/packages/appwriteWe would love you to test and help us by providing your valuable feedback.If you are new to Appwrite, Appwrite is a Secure Open-Source Backend Server for Web, Mobile & Flutter Developers. Learn more about it on https://appwrite.io

October 11, 2021 at 08:12AM by lohanidamodar
https://ift.tt/3ao7cAC
Time to say goodbye!
Right now I have my focus on other projects and do not have time for this group about Flutter development. If anyone is interested in buying the project and continue it, talk to me: @OscarEstabaCogido