Flutter Heroes
25.9K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
New post on /r/flutterdev subreddit:

Flutter FutureBuilder use future
Hi I am using FutureBuilder and I am using sockets.The future runs the first time and then I need to run it again when I receive a socket, but I don't know how.I can just call the function that I have on the future because then I can't receive the SnapShot.Probably this is a simple question, can somebody help me ?

March 19, 2020 at 09:00PM by MeloHenrique
https://ift.tt/3aaQmDO
New post on /r/flutterdev subreddit:

StatefulWidget Vs Provider for Bottom navigation bar?
I have a StatefulWidget with a bottom navigation bar with 4 tabs. I am recently getting familiarized to Provider and found this article to use provider + StatelessWidget for navigating the tabs instead of using the current StatefulWidget.The StatefulWidget is a simple setState and is used only for 1 page so wont be needing state of the bottom nav bar anywhere elseI'm trying to understand how using Provider + StatelessWidget fares against plain StatefulWidget from a performance standpoint?

March 19, 2020 at 09:29PM by geekybash
https://ift.tt/2Um7gZd
New post on /r/flutterdev subreddit:

I made a Sorting Algorithms Visualization app where you can use different visualizers and play with some settings!
https://www.youtube.com/watch?v=Gi0DsGD-lXE

March 19, 2020 at 01:46PM by DemonFtIllusion
https://ift.tt/3a53xGb
New post on /r/flutterdev subreddit:

Is there a way to detect the time zone of a device that also takes DST into account?
As mentioned in the title. Is there a way to detect the time zone of the device? I know of the timezone plugin and tried it, but it seems that you have to set the time zone manually and I don't want my users to pick it them self.I have an app and a website both made using Flutter. To work properly they need to know the time zone of a device. Most of the year this wasn't a problem but recently a user of mine in the US mentioned that the time in the app was off, since they changed to dst before europe does.

March 19, 2020 at 10:43PM by Ostof
https://ift.tt/3bbJczc