Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
New post on Flutter Dev Google group:

passing a list as constructor arguement
*class Home{* * final String name;* * final String favFood;* * final int age;* * Home(this.name, this.favFood , this.age);* *}* *class A{* * List
New post on /r/flutterdev subreddit:

What was your experience with Angela Yu's Flutter Bootcamp and how do you feel about your skills upon completing it?
Hey all,So I'm wanting to learn flutter to launch an app (I know) and I see that Angela Yu's Flutter development bootcamp on udemy seems to be universally recommend. if you've taken this course:Do you feel like you're prepared to launch a commerical mobile app with it? (ignore hosting)what did you do after you completed the course?Show off your app to me?cheers, happy coding.

September 13, 2020 at 01:36AM by hmblhstl
https://ift.tt/2Zyfukj
New post on /r/flutterdev subreddit:

Flutter Funding Choices: Flutter implementation of Funding Choices, a Google service that allows to request user consent for personalized ads in AdMob.
https://ift.tt/3bRORMh

September 13, 2020 at 01:11AM by Skyost
https://ift.tt/3maiAVo
New post on /r/flutterdev subreddit:

Which application do you use for most of your flutter development?
I am curious about the adoption of VS Code amongst flutter developers now that a good amount of time has passed since flutter has been available and since plugins continue to get better.View Poll

September 13, 2020 at 01:39AM by bitsbotsrobots
https://ift.tt/2DVezmB
New post on /r/flutterdev subreddit:

When publishing to android app store, is it possible to limit the aspect ratio of devices who can get it between 2 values? Such as, only between x ratio and y ratio? Thanks!
My flutter app just doesnt look good on certain ratios... I dont really know what to do. This is my first ever all I've made and want it to look beautiful. Thanks for understanding!

September 13, 2020 at 02:35AM by 7382hd
https://ift.tt/2FvOYRG
New post on /r/flutterdev subreddit:

Best practices in flutter to reduce the App size.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://link.medium.com/xNNKtdr6I9

September 13, 2020 at 05:55AM by surya_dev_singh
https://ift.tt/3hqLFIG
New post on /r/flutterdev subreddit:

Best practices in flutter to reduce the App size.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://link.medium.com/xNNKtdr6I9

September 13, 2020 at 05:55AM by surya_dev_singh
https://ift.tt/2FovezE
New post on /r/flutterdev subreddit:

The download completion rate of an app with an APK size of around 10MB will be ~30% higher than an app with an APK size of 100MB. So after all coding part, we do #optimization and try to #reduce the app #size. In terms of optimization each and every #bytes matter.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://medium.com/@suryadevsingh24032000/size-matters-reducing-flutter-app-size-best-practices-ca992207782

September 13, 2020 at 05:53AM by surya_dev_singh
https://ift.tt/3hqJDbp
New post on /r/flutterdev subreddit:

The download completion rate of an app with an APK size of around 10MB will be ~30% higher than an app with an APK size of 100MB. So after all coding part, we do #optimization and try to #reduce the app #size. In terms of optimization each and every #bytes matter.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://medium.com/@suryadevsingh24032000/size-matters-reducing-flutter-app-size-best-practices-ca992207782

September 13, 2020 at 05:53AM by surya_dev_singh
https://ift.tt/3bUFqfe
New post on /r/flutterdev subreddit:

The download completion rate of an app with an APK size of around 10MB will be ~30% higher than an app with an APK size of 100MB. So after all coding part, we do #optimization and try to #reduce the app #size. In terms of optimization each and every #bytes matter.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://medium.com/@suryadevsingh24032000/size-matters-reducing-flutter-app-size-best-practices-ca992207782

September 13, 2020 at 05:52AM by surya_dev_singh
https://ift.tt/2FgfpuY
New post on /r/flutterdev subreddit:

The download completion rate of an app with an APK size of around 10MB will be ~30% higher than an app with an APK size of 100MB. So after all coding part, we do #optimization and try to #reduce the app #size. In terms of optimization each and every #bytes matter.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://medium.com/@suryadevsingh24032000/size-matters-reducing-flutter-app-size-best-practices-ca992207782

September 13, 2020 at 05:52AM by surya_dev_singh
https://ift.tt/33ll9LW
New post on /r/flutterdev subreddit:

The download completion rate of an app with an APK size of around 10MB will be ~30% higher than an app with an APK size of 100MB. So after all coding part, we do #optimization and try to #reduce the app #size. In terms of optimization each and every #bytes matter.
“Size matters: Reducing Flutter App size best practices” by Suryadevsingh https://medium.com/@suryadevsingh24032000/size-matters-reducing-flutter-app-size-best-practices-ca992207782

September 13, 2020 at 05:52AM by surya_dev_singh
https://ift.tt/2Rz98gt
New post on /r/flutterdev subreddit:

Just started: some questions about design and states
Hi, I just started with Flutter and I have some queries about developing in it:I don't understand why we need the 2 different classes; the state class and the widget class? Why not just integrate the state into/inside the widget class? If you don't know what I'm referring to its the... class RandomWords extends StatefulWidget and class _RandomWordsState extends State<RandomWords>. In the hello world tutorial, all RandomWords does is just instantiate RandomWordsState.
How do you structure your projects? For example, generally do you create a separate .dart file for each screen and reusable widgets. Do you follow any standard practice like "Each file should only contain one 'custom' widget class"?
From inspecting the flutter samples and hello world, it looks like app logic is not separated from app design/style like other frameworks generally do. Is that correct? Or do you separate your logic from your widgets/layout as your project gets bigger?
This is a dart language question, is the following code an anonymous function or an alias or something else? It seems really redundant? _RandomWordsState createState() => _RandomWordsState();. From what I understand, the code is creating (overriding) a function called createState whose return value is _RandomWordsState and all this function does is instantiate AND return a _RandomWordsState object. Is that correct?

September 13, 2020 at 05:49AM by sqzr2
https://ift.tt/3mgnXlU
New post on /r/flutterdev subreddit:

Example App: Lend
Hi!​I have developed an app to manage borrowed and lent items.This app is build with flutter.I would be pleased about feedback from you: https://grue.xyz/O84​Did you rent a DVD to your buddy and never got it back?This problem belongs now to the past!Because with rentals you keep track of everything you have rented and rented.With a clear and simple design, you can get a quick overview with Rentals!Add photos to each entry and see immediately how long the deadline is still in the future with the help of a colored marking.

September 13, 2020 at 08:14AM by Dev1nius
https://ift.tt/2Fsq2uq
New post on Flutter Dev Google group:

Flutter App Architecture
Hello, I looking for the recommended way to structure a Flutter app, I know bloc is recommended but I need a recommended model that would specify the layers and how the UI would be separated. Something like MVC where it is clear to inexperienced users and incorporates state management.

September 13, 2020 at 11:47AM by lemo195
https://ift.tt/32p9igi
New post on /r/flutterdev subreddit:

ListWheelScrollView Flutter - WheelView in FLutter
To create WheelView in flutter with ListWheelScrollView ListWheelScrollView Example

September 13, 2020 at 01:06PM by rrtutors
https://ift.tt/2RozaTg
New post on Flutter Dev Google group:

How to add Audio in Carousel slider
Hlo Friends, * I have tried to add a list of audio files in matching the slider image. * When the slider is change the the next audio will be play automatically. * example: 20 pictures and 20 audios the will play by the index

September 13, 2020 at 01:14PM by Kumaresan
https://ift.tt/35yLmcC