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

Web-fist Flutter project in production?
Hello,I know that Flutter web has not reached stable yet. And I know that you are not supposed to build projects aimed for web (rather than porting mobile apps to the web). But I have a "rich internet application" project that I need to choose a stack for. Does anyone have a web-first Flutter project in production (with reasonable traffic)?Thanks

February 18, 2021 at 04:23PM by palebt
https://ift.tt/2N8yEdP
New tweet from FlutterDev:

💙We’re thrilled to share that the #FlutterEngage schedule is live on our website — find out what we’ve been building!

Learn more → https://t.co/T9025C5NCV pic.twitter.com/cUpNRF5jV5— Flutter (@FlutterDev) February 18, 2021

February 18, 2021 at 06:33PM
http://twitter.com/FlutterDev/status/1362455182370426884
New post on Flutter Dev Google group:

An InputDecorator, which is typically created by a TextField, cannot have an unbounded width
I get this error. The following assertion was thrown during performLayout(): An InputDecorator, which is typically created by a TextField, cannot have an unbounded width I have attached image of my code you can also find the code here using carbon sh Link to code < https://carbon.now.sh/?b

February 18, 2021 at 06:16PM by Kwaku amoh-aboagye
https://ift.tt/2NjgdmD
New post on Flutter Dev Google group:

How do I Record Video With Native Camera (IOS and Android) using Flutter?
Is there documentation and working examples for recording video with the native camera for IOS and Android provided by Flutter? So far, It been difficult to find anything.

February 18, 2021 at 06:29PM by Jake C
https://ift.tt/3qBX6CH
New post on /r/flutterdev subreddit:

How do you prevent flutter provider from becoming a God class?
My team and I have been using the provider package for state management for awhile now and it seems like there are some apparent issues post Mortem of some of our projects using it.I understand how provider is basically a souped up dependency injection tool for my widget tree. But I don’t see how using this tool can lead to a good design. In my experience, our providers become bloated god classes with state and business logic thrown all over the place.I understand provider is a super simple and easy to explain state management tool especially for beginners but I just don’t see how using singletons like this in app development can lead to clean architecture. Let alone the inability to using test any of the methods in my providers without jumping through hoops.Just seems like while BloC looks scarier it can provide a better way of keeping business logic separated from the presentation layer.Open to your thoughts and discussion. I’ve only been developing in flutter for about 4 months now or so if I’m dead wrong on this and there are better ways of using provider alongside cleaner architecture and layering applications I would love to hear about them.

February 18, 2021 at 07:31PM by Mrbiggleswarth25
https://ift.tt/3s0KkOg
New post on Flutter Dev Google group:

Is Android screen saver (DreamService) functionality supported?
Hi folks, I managed to add my app to the Screen savers list, but that's it – the app won't actually launch from there. I haven't found anything related to the matter in official SDK API docs. So, AFAIU, this kind of functionality is not supported for now, but maybe I'm wrong... Any suggestions?

February 18, 2021 at 08:41PM by Artem Bondarenko
https://ift.tt/3qunqi2
New tweet from FlutterDev:

📣 Get your #FlutterEngage questions ready for the leadership roundtable!

Want to ask about engineering roadmaps, product features, or technical architecture? Tweet using #AskFlutter for a chance to get your questions answered live on March 3.

Join us &rarr; https://t.co/T9025C5NCV pic.twitter.com/CtnUEAkBHr— Flutter (@FlutterDev) February 18, 2021

February 18, 2021 at 10:00PM
http://twitter.com/FlutterDev/status/1362507221943291905
New post on Flutter Dev Google group:

API documents are not getting generated
Hi Team, We have published our package
New post on Flutter Dev Google group:

How can I distinguish the difference between Controller and Builder?(newbie)
I read some document about AnimationController、PageController、StreamBuilder、FutureBuilder and so on. But I don't know how can I distinguish the difference between Controller and Builder. For example, AnimationController and PageController why do they all use "Controller" for suffix, it

February 19, 2021 at 10:56AM by 1F LI
https://ift.tt/2NGtmpO
New post on /r/flutterdev subreddit:

crash using Isolate.spawnUri
The following crashes with UI actions are only available on root isolate
. I dont intend to do any ui actions just process some inputs.import 'dart:isolate';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
var response = ReceivePort();
var remote = Isolate.spawnUri(
Uri.parse('http://192.168.0.100/echo.dart'), ['foo'], response.sendPort);
  remote.then((_) => response.first).then((msg) {
print("received: $msg");
  });
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: Scaffold(
        body: Text("aaaa"),
      ),
    );
  }
}http://192.168.0.100/echo.dart (is accessible from emulator checked)import 'dart:isolate';
void main(List<String> args, SendPort replyTo) {
  replyTo.send(args[0] + 'iis');
}

February 19, 2021 at 11:07AM by Nydedrisean
https://ift.tt/3k3flhS