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

Share Good practices
In this video https://www.youtube.com/watch?v=lGv6KV5u75k&t=180s​Says that we should share experiences to create good practices. So let's do that.​I'll start: in order to set the linting rules as mandatory, similar to the werror flag in c, I use the Lint package: https://pub.dev/packages/lint. And have to set all the rules to error manually, I already did it, if some of you want to do it, here is my analysis_options.yaml: https://pastebin.com/xHdtxDjC

March 18, 2020 at 11:48PM by Doroc0
https://ift.tt/3a2C1ZW
New post on Flutter Dev Google group:

How do you add a CocoaPod to a Flutter project?
Having a hard time finding any info on how to add a specific pod to my flutter project for iOS support. The Podfile is generated automatically, so doesn't seem like just adding it to the Podfile is the way to go. Or am I completely wrong and I should just update the Podfile and git add the

March 18, 2020 at 11:36PM by Frank Garcia
https://ift.tt/3dbnexV
New post on Flutter Dev Google group:

File picker for all platforms?
I am developing a project that I eventually intend to be available on all Flutter platforms. I need to let the user choose a file. Any file, nothing fancy. Doesn’t appear to be anything in the standard library, although this would seem to be a basic requirement on all platforms. Options?

March 19, 2020 at 12:30AM by Guyren Howe
https://ift.tt/3dbUsgI
New post on /r/flutterdev subreddit:

Is there a way for flutter to wait for an http response without a request. OK this might seem weird. But I will send notification from a php file and what I want is that my app wait for these notification in the background. Is that in anyway possible?
Is it

March 19, 2020 at 12:54AM by hob814
https://ift.tt/3bbbw4L
New post on Flutter Dev Google group:

Multiple platforms; different main files?
I have yet to dig into this very far. But what I’ve looked at had me use conditional imports and if-then blocks and such to import different versions of things. Before I dug into this, I had a theory what the answer was going to be, and I wonder if maybe I’m still right. Would it not work

March 19, 2020 at 12:38AM by Guyren Howe
https://ift.tt/2xIFZIK
New post on /r/flutterdev subreddit:

Ural - A screenshot organizer that finds your screenshot by searching its contents
https://ift.tt/2QmWtNl

March 19, 2020 at 03:39AM by thepurpleproject
https://ift.tt/33t7Ng9
New post on /r/flutterdev subreddit:

Is flutter web ever going to be a thing?
Right now the scrolling is laggy, clicks feel slow, no weby cursors. Are these ever going to be fixed?

March 19, 2020 at 07:07AM by chutiyabehenchod
https://ift.tt/3aer5Iw
New post on /r/flutterdev subreddit:

Should we use flare for animations in flutter?
Hi guys,I'm new in flutter and really trying to learn and master it :)Now i'm trying to learn animations in flutter, but every time i search "Animations in flutter" i have to see few posts about flare (Rive).And now i have question for you. Should we always use flare for animations or should we try to create that animations in flutter? I want to know what's the difference in e.g. performances, code quality (i think flare is in advantage for this one), etc...Thank you guys!

March 19, 2020 at 11:24AM by Steffgnite
https://ift.tt/2wo11w7
New post on Flutter Dev Google group:

hot reload is not working
i am unable to find hot reload and hot restart in my flutter ,can anyone please heap me with this

March 19, 2020 at 12:29PM by Muskan Sanghai
https://ift.tt/3b7l94k
New post on /r/flutterdev subreddit:

A custom slider for Flutter
https://ift.tt/392llQP

March 19, 2020 at 06:05AM by pretentiousdata
https://ift.tt/2UiittL
New post on /r/flutterdev subreddit:

Best resources for technical paper about Flutter
I am currently writing my diploma thesis (kind of like a technical paper) for school about Flutter. I am still not sure which aspect I will focus on but probably something like what makes it so unique and what opportunities it creates.I am currently on the search for interesting resources about Flutter on a more technical level. Most resources out there are tutorials of some sort which are interesting but not really what helps me.Does anyone know interesting books, articles, blog posts about that or knows where I should be looking for them?Thanks in advance :)

March 19, 2020 at 01:45PM by _Veli_
https://ift.tt/3b1uP0e
New post on Flutter Dev Google group:

Monitoring / security
Hello how are you? I'm new to the area, and I would like to ask a question. Do you want to create an application in flutter, monitoring / security, and would like to know if you can receive video and audio and real-time location of the application for a web system, like an administration panel.

March 19, 2020 at 04:54PM by Jonathan Allan
https://ift.tt/2U2uowT
New post on Flutter Dev Google group:

How to enable a child component to make changes to a parent's appbar?
Imagine the following scenario - the app has a global Scaffold with a global AppBar. The body of the Scaffold is one of many app components. Each component would have the global appbar render differently and also have access to the appbar's TabController (so that listeners can be attached to

March 19, 2020 at 05:48PM by Kristaps Fabians
https://ift.tt/2UiCZuw
New post on /r/flutterdev subreddit:

Compute function make a loop
Hi , guys, I would like someone could tell me , why when I use compute function, it makes the result as loop?. Here mi codeclass SearchMetodos {Future<List<ContactModel>> buildFiltroLista(var filtered) async {
List<ContactModel> contactList = [];
_contacts = filtered;
try {
if (filtered != null) {
for (int i = 0; filtered.length - 1 >= i; i++) {
contactList.add(ContactModel(
id: i.toString(),
names: _contacts.elementAt(i).displayName,
lastNames: _contacts.elementAt(i).familyName,
emails: _contacts.elementAt(i).emails,
phones: _contacts.elementAt(i).phones,
avatar: _contacts.elementAt(i).avatar,
));
}
}
} catch (e) {
print('Error buildListaFiltro' + e.toString());
}
return contactList;
},}Then another class call this method with compute , here :class SearchContactPage extends StatefulWidget {var _search = SearchMetodos();Future<List<ContactModel>> _suggestions() async {
var contactos = await ContactsService.getContacts();
List<ContactModel> miList = [];
miList = await compute (_search.buildFiltroLista, contactos);
setState(() {
suggetionsList = miList;
});
return suggetionsList;
},}Thanks:)

March 19, 2020 at 06:17PM by maliDevFlutter
https://ift.tt/2xKkqrh