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

Is FirebaseMLVision deprecated?
I'm attempting to include real-time face detection in my flutter app but it isn't really working. Various resources online suggest to move on from FirebaseMLVision, but the page for the kit was updated in February 25, 2021. Anyone know what's going on?

March 08, 2021 at 06:27PM by 5thWonder
https://ift.tt/3bsnfP7
New post on /r/flutterdev subreddit:

Edge Cloud Computing in Flutter?
I was wondering if anyone in this forum has any experience with managing data bases at the Edge, that is on the device itself, rather than at the server.I recently learned about it and there are various SDKs available. I haven't tried any of them. But I wish to learn from experienced developers about their experience, and pros and cons of the platforms they used.For the app I am developing, user data privacy and speed of transaction is the outmost important criteria. I thought Edge Cloud is exactly what I might need!I am currently exploring an Edge Cloud platform called "Mimik". If you know a better one please share your recommendations.Thank you

March 08, 2021 at 07:46PM by WiseRaven1
https://ift.tt/2MXbAyq
New tweet from FlutterDev:

๐Ÿคฉ Celebrating #IWD2021 with a series dedicated to women in tech!

Meet 21 trailblazers who are sharing their accomplishments, contributions and dedication to making the developer community more welcoming and inclusive for women.

Read their stories &rarr; https://t.co/yXyhMh8Pqn pic.twitter.com/DxofLnfaUjโ€” Google Developers (@googledevs) March 8, 2021

March 08, 2021 at 07:54PM
http://twitter.com/FlutterDev/status/1368998595836276736
New tweet from FlutterDev:

๐Ÿ‘ This #IWD2021, give it up for @pr_Mais!

With a passion for tech at a young age, Mais is currently a lead developer at a tech startup. They use Flutter to help patients get remote consultations and to give clinics access to appointment details.

Read &rarr; https://t.co/ERuUWLkazP pic.twitter.com/ddDj7QSjCXโ€” Flutter (@FlutterDev) March 8, 2021

March 08, 2021 at 11:12PM
http://twitter.com/FlutterDev/status/1369048328948785152
New post on /r/flutterdev subreddit:

My take on Navigator 2.0 (or Router) API
Flutter as a framework has lots of really good solutions for exposing its APIs for us to build mobile applications. With all the respect to the team involved, Router is not one of them.And I donโ€™t think I am alone on this one, just look at the comments in the most upvoted router-related explanation post - while the explanation is great on the post, this is a bizarrely verbose solution for an app that has two extremely simple pages. How should I feel needing to write more lines for the navigation when comparing to the whole pageโ€™s layout?I am far from the most experienced developer out there but, with a decent sum of years in mobile development, having worked with Android and iOS native APIs, I donโ€™t think this is a developer adoption learning curve problem, this is very likely a overly complex solution for something that could be simplified, even if at some minimal performance cost that I am unaware of.I tried to ask about this in Flutter Engage live Q&A event, but I wasnโ€™t lucky to get my message read.After spending about 30ish hours in total, I have given up trying to scale this solution for my application that has around 12 full-screen pages and deep-links. Sure, I could try harder and eventually find out better implementations for my use-case, but it would still be super verbose. I am not event taking into account the insane amount of docs and comments that I added to the related classes, to make them friendly for anyone that will be reading my code later.There are alternatives like beamer and voyager which kind-of removes part of the complexity, but still, they have to implement another bigger abstraction as an alternative to the โ€œnativeโ€ one.And with all of that said, we get to the core issue that gets closed almost a month ago with a roadmap for an improvement of the Router API!I am just sharing this for people that are also struggling with this new API. For now, to meet some deep-link use-cases I still have to use Router, as it introduces relevant new behaviors, but I will not spend any more time trying to understand an API that must change (and Flutter team already positioned like so), I will use and try to contribute to one of the existing community libraries. Just hope that they could be more emphatic on this matter, as of right now, the API is just โ€œhangingโ€ there, on the stable branch.

March 08, 2021 at 11:09PM by gmatuella
https://ift.tt/2OxzMb5
New tweet from FlutterDev:

๐Ÿ’ก "Enjoy what you are doing and be curious."@kate_sheremet started programming at 15 years old and fell in love. She now runs her own company, FutureWare, and is a Google Developer Expert in Flutter and @dart_lang.

Read her #IWD2021 story ๐Ÿ‘‰ https://t.co/ERuUWLkazP pic.twitter.com/vp3YJNgTu6โ€” Flutter (@FlutterDev) March 9, 2021

March 09, 2021 at 01:06AM
http://twitter.com/FlutterDev/status/1369077159059353603
New post on /r/flutterdev subreddit:

Help choosing between react native and flutter.
/r/appdev/comments/m0y6tc/help_choosing_between_react_native_and_flutter/

March 09, 2021 at 05:18AM by ewoolsey
https://ift.tt/38lVhCX
New post on Flutter Dev Google group:

Learn Everything About Flutter
Hello, My Dear Friend! Please like and subscribe to this youtube channel! Here you learn : 1: Creating a Modern Promo Video in After Effect 2: Modern Mobile Application Development in Flutter 3: Modern Web App with React-Hooks. 4: Modern Video Editing 5: Principle of Animation 6: Creating

March 09, 2021 at 06:37AM by Jitendra Kumar Kumawat
https://ift.tt/3cicJt9