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

Flutter boilerplate base project
So yesterday I saw someone post his flutter base project, so i think i should share mine too.
So this is the feature and package i'm using in this project:https://github.com/chunlee-thong/flutter_boiler_plateLocalization (easy_localization)HTTP Request (dio with custom error handler)State management (i didn't use any specific package in this project so you can decide witch one you like)App icon (flutter_launcher_icons)Storage (flutter_secure_storage for key value store and for database i used hive but decide to remove it )get_it for dependency injection
So since most of my work are working with consuming REST Api, this project is more focusing on that.And for the most controversial part of this project is i'm using Stream(rxdart) to consume REST API, you can check it out on BaseStream class which is a class that container a StreamController(BehaviorSubject) and has a methodto handle API call (asyncOperation).You can check README for more additional explanation.I really hope to see more feedback and improvement from you guys, Thank you

September 21, 2020 at 07:46PM by Fienases
https://ift.tt/3iUmBvk
New post on /r/flutterdev subreddit:

What large apps are developed fully by Flutter?
I want to test performance. Thanks.

September 21, 2020 at 07:37PM by ypsthelove
https://ift.tt/2HlWT4U
New post on /r/flutterdev subreddit:

How can I have a nested Tab Bar within a Scaffold?
I am using a drawer for my main navigation, and I would like to nest a tab bar inside the body to let me choose between 2 containers in the view.This is what I am doing:import 'package:flutter/material.dart'; import 'package:provider/provider.dart';
class NestedTabBarClass extends StatefulWidget { @override _NestedTabBarClassState createState() => _NestedTabBarClassState(); } class _NestedTabBarClassState extends State<NestedTabBarClass> with TickerProviderStateMixin { TabController _tabController; @override void initState() { super.initState(); _tabController = new TabController(length: 2, vsync: this); } @override void dispose() { super.dispose(); _tabController.dispose(); } @override Widget build(BuildContext context) { return Column( mainAxisAlignment: MainAxisAlignment.start, children: <Widget>[ TabBar( controller: _tabController, labelColor: Colors.black, tabs: <Widget>[ Tab( text: "Tab A", ), Tab( text: "Tab B", ), ], ), Container( child: TabBarView( controller: _tabController, children: [ Container(child: Text("A")), Container(child: Text("B")), ], ), ), ], ); } } 
When I do this, I get this error:The method '>' was called on null. Receiver: null Tried calling: >(1e-10)If I remove this code:
Container( child: TabBarView( controller: _tabController, children: [ Container(child: Text("A")), Container(child: Text("B")), ], ), ), 
The tabs render.Is it bad practice to have a tab bar within a scaffold?My scaffold has a nav drawer, and I change the body based on the selected drawer index. Now, within the selected body, I want tabs, but apparently, I am doing something wrong.

September 21, 2020 at 09:27PM by 11010001101001
https://ift.tt/2G04Z2d
New post on /r/flutterdev subreddit:

Should we always check mounted before updating state?
I haven’t seen any warnings to check if a widget is still mounted before calling setState(), but it seems like a pretty important thing to avoid memory leaks. Based on what I’ve read, it seems like we should be doing this check every time we call this function, but are there specific scenarios where we’re supposed to check this property?

September 21, 2020 at 09:54PM by jnzq
https://ift.tt/2HfTXqh
New post on Flutter Dev Google group:

Looking for a Flutter DEV
Hi! I'm designing an app, but have no idea of programming. Is there anyone interested? Dont have a big budget but is an interesting project! Thanks!

September 21, 2020 at 11:41PM by Pato Villanueva
https://ift.tt/3mJvI43
New post on Flutter Dev Google group:

JOB : { Remote } Flutter Dev required for long-term project
We require an experienced Flutter developer to join our online food ordering platform development team. Remote position. Experienced developers only please. Experience of VueJS/Nuxt & Laravel would be highly advantageous. 2+ Years expience.

September 22, 2020 at 12:03AM by cen...@inan.net
https://ift.tt/3hSCfWs
New post on /r/flutterdev subreddit:

I created a Web Development Discord server!
Wonderful news!I created my first Discord server and I'm so happy for what I've made. It's called "The Web Dev Heaven" it's a friendly community where web developers and designers are welcomed to talk about the latest technologies and languages. So we can all learn about different ( Databases, Frameworks, Adobe XD plugins, Algorithms, CMS's, etc. ) to improve our code. We are here for supporting our projects ( So if you are looking to gain traffic with your website or feedback on your project, we are here for you! ). We are really looking for some new mobile devs!https://discord.gg/uXE4E7nThank you, if you join!
Thank you, for the support!
Thank you, for the upvote!

September 22, 2020 at 12:11AM by BlueJay875
https://ift.tt/3hQQFqm
New post on /r/flutterdev subreddit:

Using an encrypted Hive box across mobile and desktop platforms
https://ift.tt/2EptPs8

September 22, 2020 at 12:39AM by jda258
https://ift.tt/3mORHqD
New post on /r/flutterdev subreddit:

Transitioning between native Launch Screen/Splash Screen to Flutter Screen
I’ve been trying to achieve a way to overlap the native iOS Launch Screen and Android Splash Screen to custom Flutter Screen to achieve animations seamlessly. I was trying to follow up on the GitHub Issue that was tracking this but Flutter Team seems to have closed it marking it as not bug (which I understand).But I would still like to achieve this. Here’s an example of what Uber does.Uber Launch Screen to animationHas anyone been able to achieve this or can guide me towards the right path to do this.Thanks

September 22, 2020 at 01:20AM by aseef17
https://ift.tt/33QBsjN
New post on /r/flutterdev subreddit:

Full stack
Hello. I'm starting out in Flutter. I've covered basic front end parts. I wish to use dart on my server side. I'm struggling to find learning resources for it. I wish to go full stack on flutter with dart. Shall I get some links to videos or books to learn? Thanks.

September 22, 2020 at 09:24AM by nxxwxj
https://ift.tt/3mKjQPh
New post on Flutter Dev Google group:

How to remove viewport padding?
I've tried to add just a Container with padding: EdgeInsets.zero but there's still some padding on the viewport. Here's the screenshot of what i'm saying: [image: loginscreen.jpg] How can i remove the viewport padding? Thanks in advance.

September 22, 2020 at 02:08PM by Jorge Ferrari
https://ift.tt/35Z3jB1
New post on /r/flutterdev subreddit:

App Feedback Thread - September 22, 2020
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

September 22, 2020 at 02:33PM by AutoModerator
https://ift.tt/3mQodbV
New post on Flutter Dev Google group:

Tabs scroll with list
Kindly check the link below https://ift.tt/2HnCqg5 I have achieved it static but I want to get it dynamically. Means length of each tab not same. Kindly help me if you know how to do it.

September 22, 2020 at 02:55PM by john786
https://ift.tt/33P3ZX9