Flutter Heroes
26.1K subscribers
272 photos
2 videos
31.1K links
Download Telegram
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
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:

🌟 Let's show some love for @rihanna_ke this #IWD2021!

Rihanna's path into tech began out of curiosity. Now, she's a Google Developer Expert in web, Flutter, and Dart, and her advice is, "Always stay passionate and never stop learning."

Read 👉 https://t.co/ERuUWLkazP pic.twitter.com/aNv7WoP1Il— Flutter (@FlutterDev) March 8, 2021

March 08, 2021 at 09:06PM
http://twitter.com/FlutterDev/status/1369016772532183041
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