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

How many are too many packages?
No seriously I know it's efficient and all and like saves time and money but when are you using too many packages it becomes a liability? Love to hear your thoughts as I'm sure we all have different opinions on this.

July 22, 2021 at 09:37PM by sabaybayin
https://ift.tt/3zrT3Nc
New post on /r/flutterdev subreddit:

Listview problem , im new to flutter
can someone help me with my code .class Home extends StatelessWidget {
final List<WidgetTiles> widgetTilesList = [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
  ];
u/override
Widget build(BuildContext context) {
return Scaffold(
      body: ListView(
        children: [
WidgetTiles(name: 'Take Notes', color: Colors.blue),
        ],
      ),
    );
  }
}
class WidgetTiles extends StatelessWidget {
WidgetTiles({this.name, this.color});
final String name;
final Color color;
@override
Widget build(BuildContext context) {
return Container(
      color: color,
      child: ListTile(
        leading: Text(name),
      ),
    );
  }
}
why is the list not showing when i run .

July 22, 2021 at 10:29PM by ball-sack-patato
https://ift.tt/2Uvy51r
New post on /r/flutterdev subreddit:

Firebase real-time database with proper state management
Hi guys I am new to flutter but already have enough experience in the development site.Just a couple of months ago I started to learn a flutter so I can build my application but it's taking too much time, for now, I have really good hands in UI but I am still weak in the state management side.But now I don't have enough time to learn because I need to build my application soon that is why I need help from you guys and it's really helpful for me if anyone can help me to build proper state management with firebase real-time database with the provider ( or any other ). so I can use that in my projectsI know it's not the best way but I don't have enough time to learn so that is why I need help from you guys and I hope anyone can help me.

July 22, 2021 at 11:10PM by Prashant_4200
https://ift.tt/3xYF41d
New post on Flutter Dev Google group:

golf scorecard
Hi, I just finished a basic course of Flutter and I'm trying to create a golf scorecard app to practice. I'm just wondering what widget to use to create the scorecard itself. So far, I'm looking at DataTable but I can't seem to find documentation on how to retrieve data from it so I can

July 23, 2021 at 03:24AM by JC S Reyes
https://ift.tt/3y0vhI0
New post on /r/flutterdev subreddit:

Learn how to start writing the test cases in a flutter app with a simple example.
https://ift.tt/3rxyoVw

July 23, 2021 at 07:03AM by connectsteven
https://ift.tt/3BAVHCu
New post on /r/flutterdev subreddit:

Getting started with writing Test Cases in Flutter
https://ift.tt/3rxyoVw

July 23, 2021 at 06:53AM by maria_garcia20
https://ift.tt/3iCrQkm
New post on Flutter Dev Google group:

Flutter on the Jetson Nano
Has anyone successfully built an applicaiton with a GUI on a Nvidia Jetson Nano with Flutter?

July 23, 2021 at 08:30AM by mmel...@gmail.com
https://ift.tt/36SVH2v
New post on /r/flutterdev subreddit:

I made a gaming social network using Flutter
This post is not a list of the pros and cons of Flutter, I'm just sharing my experience.The project (I don't think I can post a link in the post so I'll post a comment with it)Long story short: I started learning coding on Reddit and after a few months I got a job as Android developer, but lost it because of the pandemic. Three of us got along really well so we wanted to create something together.We've created a social network that in the idea is kind of a Twitter and Reddit hybrid dedicated to gaming.
Some of the features (a lot more are to come) :Your followers can follow your activity and be notified when you are live on Twitch.You can create and follow events: whether it's a special streaming event, a gaming night with friends or a big Esports event.You can also post news and gameplay on a game's feed, the content will be visible to all followers of that game. ... and many other things. The app is in Beta, we are working on new features and a PC version.
DevelopmentWe are one Devops, and two devs. My friend is mostly focused on the backend part and I work on the mobile and desktop apps.
It was crucial for us to release the app on Android and iOS (and a bit later on desktop) fast enough with decent performance. But we didn’t have much time and we had limited resources so going native was not a viable solution. I gave Xamarin, React and Flutter a try and of course I picked the later. Even if React was more mature I chose Flutter because I had a better experience with it building a toy app, and because of the amazing community.ArchitectureI tried to copy what I was used to for Android development: MVVM with a pragmatic approach of Clean Architecture.To sum it up:
Datasource > Repository > Use case (where I do logic not related to the UI) > ViewModel (where I do logic related to the UI, this is a ChangeNotifier and I use Provider for state management) > UI (with no logic). With GetIt as a service locator.It's probably far from being perfect but it works for me, I have no problem to add features or to test, and that's the point.The worstRegarding features what I've struggled the most with lately was handling videos in a feed, mostly on Android. I had either poor performance or crashes. I ended up having only one instance of the video player at the time and I init it based on percentage of visibility and scroll velocity. But the behavior was different on both platforms so we have one player for each at the moment. We improved loading time with compression using FFMEG.Regarding Flutter, updating dependencies is a real nightmare. EVERY time I update there is trouble on iOS and I need to clear folders or update values here and there.The bestIt's really pleasant to code UI, if I ever have to go back to Android development I would have a hard time (or not with Compose!).StackFront: Flutter
Back: Golang, Gorilla, vanilla SQLAll in all I'm happy to have picked Flutter, and I'm really confident for its future.
The app has reached beta quality on mobile and an alpha release of the desktop version should be available in the coming months. Please comment if you have any questions!

July 23, 2021 at 10:51AM by chiracjack
https://ift.tt/3eLbFji
New post on /r/flutterdev subreddit:

App Feedback Thread - July 23, 2021
This thread is for getting feedback on your own apps.Developers:must provide feedback for othersmust include Play Store, App Store, GitHub, GitLab, or BitBucket linkmust make top level commentmust make effort to respond to questions and feedback from commentersmay be open or closed sourceCommenters:must give constructive feedback in replies to top level commentsmust not include links to other appsTo cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback.As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you.- r/FlutterDev Mods

July 23, 2021 at 03:00PM by AutoModerator
https://ift.tt/3BwdUkl
New post on Flutter Dev Google group:

Flutter Firebase - Huge Errors...
Hi Everyone. First time with Firebase and holy moly.. Not sure what i've deserved to get this but what on earth is going on? I've tried cleaning the build when I do that I find the configurations that I've saved for IOS deployment IOS 10, seem to revert every time.. I've tried using Doctor

July 23, 2021 at 04:05PM by Bridget Kelly O'Sheehan
https://ift.tt/3wZAY7C
New post on /r/flutterdev subreddit:

Flutter on Linux
So I searched a bit and you can develop Flutter apps in Linux I have a triple boot on my computer (windows/pop os(ubuntu)/manjaro(arch)) and I don't want, if possible, to use windows. What should I use? And I have another question: which desktop environment should I use? I have installed kde, gnome and cinnamon.(I reposted it under discussion because it was removed, don't ban me i'm new to this sub)

July 23, 2021 at 05:30PM by Inccool8
https://ift.tt/3eMAueI
New post on /r/flutterdev subreddit:

Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?
Flutter apps work with android tv so why flutter don't have good Tv plugins like android studio leanback lib?

July 23, 2021 at 07:02PM by diyar_gulli
https://ift.tt/3iFLHit