Sitemap
Dart

Dart is an approachable, portable, and productive language for high-quality apps on any platform. Learn more at https://dart.dev.

Announcing Dart 2 Stable and the Dart Web Platform

7 min readAug 7, 2018

--

Dart: Growing Excitement

Dart 2: A Client-Optimized Language

final _field = [3.14, 6.28];void main() {
// No type parameter is provided, but <int> is inferred
print([1, 2, 3].runtimeType); // List<int>
// If types are unmatched, their common base type is used
// int (1) and double (3.14) are both `num`
print([1, 3.14].runtimeType); // List<num>
// Inference goes beyond variables.
// You can omit types on fields, too.
print(_field.runtimeType); // List<double>
}

Dart on the Web: A Rich, Powerful Framework

hnpwa.dartlang.org
Material Date Picker — one of the rich components available for your web application

Flexible Tooling for Dart 2

Learn more

Thank you

--

--

Dart
Dart

Published in Dart

Dart is an approachable, portable, and productive language for high-quality apps on any platform. Learn more at https://dart.dev.

Kevin Moore
Kevin Moore

Written by Kevin Moore

Google Product Manager working on Dart and Flutter web technologies. Find all of my social links at https://j832.com

Responses (15)