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

Adding multiple themes to our Flutter Application, the easy way using Providers
https://ift.tt/2O3CTI8

March 08, 2021 at 05:29AM by cheerfulboy
https://ift.tt/3kRKyoO
New post on /r/flutterdev subreddit:

Mono repositories with Android Studio and FVM.
Do you want to set up a mono repository with Flutter, Android Studio, and FVM? Do you want to automate that with a dart program?You can read all about it in my blog post.
Mono-repo with Flutter & Android Studio

March 08, 2021 at 08:57AM by jsroest
https://ift.tt/3emsmCm
New post on /r/flutterdev subreddit:

Easy bottom navigation package
Hey guys! I made a package for making it easy to implement bottom navigation in Flutter. Bottom navigation requires a bit of code to work correctly. This package provides navigation history and transition animations with highly flexible and lightweight codes.

March 08, 2021 at 08:39AM by Jezsung
https://ift.tt/38jA4te
New post on /r/flutterdev subreddit:

Invoice Ninja v5 platform built with Flutter
Customize your admin panel & client-side portal to match your company branding (or just to have fun, why not?!)! https://invoiceninja.medium.com/ We're in our first week live for our self-hosting community, coming soon to our SaaS community! We welcome all feedback!

March 08, 2021 at 09:09AM by invoice_ninja
https://ift.tt/2Of6mP4
New post on Flutter Dev Google group:

How to wrap this code in SingleChildScrollview?
How to wrap this code in SingleChildScrollview? addtopSheet() { List list1 = ['a', 'b', 'c']; getbustime() ; print('sdl'); print(sdl); // List list2 = y['times']['serviceDay']; //print(y); // return TopSheet.show( context: context, child:

March 08, 2021 at 11:03AM by sona
https://ift.tt/38kwlLS
New post on /r/flutterdev subreddit:

FlutterQuill — Rich Text Editor for Flutter
https://ift.tt/3sYo5ZV

March 08, 2021 at 10:21AM by Elixane
https://ift.tt/3bmvYSZ
New post on /r/flutterdev subreddit:

Rate/Comment on apps "Service"
I've received emails of people offering a 'service' that gets people to comment and rate your apps in Google Play for a fee.Is this common practice? Is it recommended? Can it be penalized by Google?Thanks.

March 08, 2021 at 11:23AM by cHaos646
https://ift.tt/30mLXdt
New post on /r/flutterdev subreddit:

Flutter Tap Weekly Newsletter Week 78, Flutter Engage Edition! - Tutorials, videos, packages, and much more!
https://ift.tt/3bpqLtC

March 08, 2021 at 01:28PM by vensign
https://ift.tt/2PKCoTJ
New post on Flutter Dev Google group:

Contract Job Opportunities // Hot Requirements // Immediate interviews
Hello Associates, Kindly send me resume at *Austi...@mirthconsulting.net
New post on /r/flutterdev subreddit:

SurveyKit - Create beautiful surveys in an efficient way
https://ift.tt/3btKfNY

March 08, 2021 at 05:00PM by Numoy
https://ift.tt/3bq8egF
New post on /r/flutterdev subreddit:

The `build_it` is a builder that representing various types of generators that mainly generate code for other generators (and builders), or generates ready-to-use code, doing the chores for you.
Beta version, but everything seems to work.The current list of generators includes:
- JsonSerializableAn example of the input configuration:shop_objects.yaml```yamlformat: name: build_it generator:name: JsonSerializableimmutable: true jsonObjects: - name: Product comments: "Product model" properties: - { name: id, type: int? } - { name: name, type: String? } - { name: retailPrice, type: double? }name: User immutable: false comments: "User model" properties:{ name: email, type: String? }{ name: id, type: int? }{ name: name, type: String? }name: password type: String comments: "Password property" ```An example of the generated code:shop_objects.g.dart```dart // GENERATED CODE - DO NOT MODIFY BY HANDimport 'package:json_annotation/json_annotation.dart';part 'shop_objects.g.g.dart';// ************************************************************************** // build_it: JsonSerializable // **************************************************************************/// Product model @JsonSerializable() class Product { Product({this.id, this.name, this.retailPrice});/// Creates an object from a JSON representation factory Product.fromJson(Map<String, dynamic> json) => _$ProductFromJson(json);final int? id;final String? name;final double? retailPrice;/// Returns a JSON representation of the object Map<String, dynamic> toJson() => _$ProductToJson(this); }/// User model @JsonSerializable() class User { User({this.email, this.id, this.name, required this.password});/// Creates an object from a JSON representation factory User.fromJson(Map<String, dynamic> json) => _$UserFromJson(json);String? email;int? id;String? name;/// Password property String password;/// Returns a JSON representation of the object Map<String, dynamic> toJson() => _$UserToJson(this); } ```

March 08, 2021 at 04:27PM by andrew_mezoni
https://ift.tt/3c6Xx1S