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

Why doesnโ€™t a TextField have an accessible text variable?

Secondly why canโ€™t I use a controller or onChanged() on a TextField that has expands: true? I made a scrolling input text view with an Expanded TextField. I want to perform a save action every time the user types a keyboard button (such as the alphabet keys, spacebar, or backspace) and changes ... https://www.reddit.com/r/FlutterDev/comments/16kbalb/why_doesnt_a_textfield_have_an_accessible_text/
๐Ÿ‘2๐Ÿ‘จโ€๐Ÿ’ป1
New post on /r/flutterdev subreddit:

Why is it faster to build UI with Flutter than React?

People say that you can build UI super fast with flutter but doesnโ€™t React also have things like component UI library? what does flutter have that React doesnโ€™t that boosts your development speed? submitted by /u/rdpGuy link comments https://www.reddit.com/r/FlutterDev/comments/16lln4o/why_is_it_faster_to_build_ui_with_flutter_than/
๐Ÿ‘1
New post on /r/flutterdev subreddit:

Can I pick up Flutter faster than web things?

I want to build a dynamic app that can be ok on both web and mobile. Iโ€™m learning to code almost from scratch so thereโ€™s nothing Iโ€™m familiar to already. all Iโ€™m concerned is that I want to pick up the tech fast and build the prototype of my idea fast. in that regard, I chose Firebase... https://www.reddit.com/r/FlutterDev/comments/16lt97w/can_i_pick_up_flutter_faster_than_web_things/
๐Ÿ‘1
New post on /r/flutterdev subreddit:

Custom Widget Workflow

I'm interested in learning Flutter, but am wondering what the workflow looks like when you need to create a fully custom widget. Do you need to learn drawing pixels with the canvas in order to make new widgets? (In the CSS world for example you might create something totally unique, so I'm... https://www.reddit.com/r/FlutterDev/comments/16m3xv4/custom_widget_workflow/
๐Ÿ‘1
New post on /r/flutterdev subreddit:

Can Android Studio use .vscode/launch.json?

My team uses VSCode - I love Android Studio. They have no problem with me using Android Studio, but it is up to me to figure out how to use the launch.json in Android Studio. It is basically 60smth apps all defined like ```json {"version": "0.2.0","configurations": [{"name": "app_1","request":... https://www.reddit.com/r/FlutterDev/comments/16mr60d/can_android_studio_use_vscodelaunchjson/
๐Ÿ‘1
If you could be interested to participate in #FlutterHeroes24, to immerse yourself in the Flutter dev community - networking & learning - for one day, then pop the date in your diary now so that you don't get booked up. ๐Ÿ”ฅ 23 February 2024 ๐Ÿ”ฅ https://flutterheroes.com/2024/
โค3๐Ÿ‘1
New post on /r/flutterdev subreddit:

Does flutter flow let you download for free?

Hey everyone I'm using flutterflow.io to create a project... I was hoping if someone here who's already used it let me know about their experience and whether it is free of cost..? submitted by /u/Round_Blueberry9187 [link] [comments] https://www.reddit.com/r/FlutterDev/comments/16nb67y/does_flutter_flow_let_you_download_for_free/
๐Ÿ‘3
New post on /r/flutterdev subreddit:

Using mediapipe in flutter using channel

Hi, Since there is no mediapipe official package for flutter can we use the native mediapipe code to be called in futter via the the channels provided in the flutter. Or is there any way i can use on device object detection in flutter. submitted by /u/uh380411 link comments https://www.reddit.com/r/FlutterDev/comments/16nezr8/using_mediapipe_in_flutter_using_channel/
New post on /r/flutterdev subreddit:

A statically typed JSON reader - useful or to you prefer code generation?

There's a TypeScript library called "Zod" (for reasons I don't know and didn't lookup) which allows to define the structure of a complex JSON document and to validate it while at the same time deriving a TypeScript type from that structure so that you only have a single source of truth.... https://www.reddit.com/r/FlutterDev/comments/16noj4z/a_statically_typed_json_reader_useful_or_to_you/
New post on /r/flutterdev subreddit:

Flutter vs web + wrapper?

Flutter gives you good mobile app and mediocre web app from one codebase while web + wrapper gives you good web app and mediocre mobile app from one codebase. but it looks like the mediocre mobile app web + wrapper gives is slightly better than the web app Flutter gives. then unless mobile app... https://www.reddit.com/r/FlutterDev/comments/16o63to/flutter_vs_web_wrapper/
๐Ÿ‘2โค1
New post on /r/flutterdev subreddit:

Mobile App Creation Guide

I'm excited to share my latest guide: "Mobile App Creation Guide: From Idea to Market Development. Part 1" Having spent over a decade in the technology industry, I've put my experience, insight, and business knowledge into this comprehensive resource. Check it out here:... https://www.reddit.com/r/FlutterDev/comments/16oer3s/mobile_app_creation_guide/
๐Ÿ‘2
New post on /r/flutterdev subreddit:

Why is it so damn difficult to find projects as a freelancer

Ive made lots and lots of projects which are outsourced by my contacts(who pay me very less on projects like 400$ on a pretty decent sized project), but now i want to find projects on my own so i can work independently. Unfortunately ive tried upwork(which is saturated to an extreme) and ive... https://www.reddit.com/r/FlutterDev/comments/16ojkts/why_is_it_so_damn_difficult_to_find_projects_as_a/
โค2
New post on /r/flutterdev subreddit:

Deeplinking in Flutter

Hello guys, I'm trying to create a deeplink to my Android app. When I share a url it should open my app. I have made changes in manifest file as mentioned in android documentation and hosted the required well known files too. But it doesn't open the app even though it is installed. Is there... https://www.reddit.com/r/FlutterDev/comments/16p2y3j/deeplinking_in_flutter/
New post on /r/flutterdev subreddit:

In-App-Purchases Course or in depth tutorial

Hi, been searching for quite a while for something in depth about in app purchases either using revenuecat glassfy or any other service like them. I couldn't find any step by step course about this topic and that is the best way for me to learn by following step by step. Any help will be much... https://www.reddit.com/r/FlutterDev/comments/16p800d/inapppurchases_course_or_in_depth_tutorial/
โค1
New post on /r/flutterdev subreddit:

need support for using bloc_test

โ€‹ I have a simple code todo_bloc : class TodoBloc extends Bloc { TodoBloc() : super(const TodoState(todos: [])) { on((event, emit) => _addTodo(event, emit)); on((event, emit) => _removeTodo(event, emit)); } void _addTodo( AddEvent event, Emitter emit, ) { final todo = event.todo; if (todo !=... https://www.reddit.com/r/FlutterDev/comments/16pxx5v/need_support_for_using_bloc_test/
๐Ÿ‘2โค1
New post on /r/flutterdev subreddit:

Will Flutter crush my laptop

So I have been working on an app with Python and kivey. It has gone really well be was looking at Flutter to expand the apps capabilities. Kivey is great but can be limiting in some aspects. Pyhton ran fine is vscode just wondering if dart and flutter are about same cpu intensive? submitted... https://www.reddit.com/r/FlutterDev/comments/16q2a0b/will_flutter_crush_my_laptop/
๐Ÿ‘2
New post on /r/flutterdev subreddit:

Add ChatGPT detector to offline flutter project?

I want this to work locally on all devices (Windows, Mac, Linux, iOS, Android). It would be useful for students who are writing essays, for example. Can this be done? submitted by /u/ThE_pLaAaGuE [link] [comments] https://www.reddit.com/r/FlutterDev/comments/16q7xd0/add_chatgpt_detector_to_offline_flutter_project/
๐Ÿ”ฅ1