You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Zijie He a46ac84206 [Fuchsia] Allows FuchsiaEmulatorCFv2 to start daemon and emulator 4 hours ago
.dart_tool [infra] re-land work to auto-generate .dart_tool/package_config.json 1 year ago
.github Bump actions/checkout from 4.0.0 to 4.1.0 7 days ago
benchmarks [benchmark] Add benchmark prefix to UiMatrix benchmark. 2 weeks ago
build [Fuchsia] Allows FuchsiaEmulatorCFv2 to start daemon and emulator 4 hours ago
docs Spelling pkg analyzer lib 8 months ago
pkg [Fuchsia] Allows FuchsiaEmulatorCFv2 to start daemon and emulator 4 hours ago
runtime [vm, compiler] Fix Float32x4.greaterThan[OrEqual] on IA32 and X64 to give the expected result for NaNs. 11 hours ago
samples Fix samples/ffi/http/test/http_test.dart 4 days ago
sdk [core] Avoid implicit downcast from dynamic 1 day ago
tests [vm, compiler] Fix Float32x4.greaterThan[OrEqual] on IA32 and X64 to give the expected result for NaNs. 11 hours ago
third_party [build] Fix MSVC build. 1 week ago
tools [infra] Enable Linux ARM64 try jobs, step 1. 4 days ago
utils [Reland] [dartdev] Convert gen_kernel.dart.snapshot into an AOT snapshot 1 week ago
.clang-format VM: Re-format to use at most one newline between functions 6 years ago
.gitattributes [web] rename suite dart2js -> web. 3 years ago
.gitconfig [infra] Add documentation to .gitconfig 5 years ago
.gitignore [tool] Bisection tool 3 months ago
.gn [Fuchsia] Import test scripts from chromium and use it to download image 1 month ago
.mailmap Fixed various typos in a lot of files 1 year ago
.style.yapf Mass format python with yapf 4 years ago
.vpython [infra] Add .vpython spec to fix gsutil on the bots (#31065) 5 years ago
AUTHORS Simplify the license situation 1 year ago
BUILD.gn [ffi] Reland the iNativeCallable.listener example test. 5 days ago
CHANGELOG.md [ffi] Make nativeFunction throw if already closed 6 days ago
CONTRIBUTING.md Update CONTRIBUTING.md 5 months ago
DEPS [Fuchsia] Allows FuchsiaEmulatorCFv2 to start daemon and emulator 4 hours ago
LICENSE Update LICENSE 3 years ago
OWNERS [owners] update the top-level owners file 11 months ago
PATENT_GRANT Rename patent file 4 years ago
PRESUBMIT.py [presubmit] Remove check to keep _2 suites in sync 2 months ago
README.dart-sdk Fix README.dart-sdk file to reflect current contents of the SDK 8 months ago
README.md master => main 2 years ago
SECURITY.md Add link to published advisories 2 years ago
WATCHLISTS Add a watchlist entry for changes to _fe_analyzer_shared 6 months ago
codereview.settings [infra] Default presubmits to use python3 2 years ago
sdk.code-workspace Add an explicit Visual Studio Code workspace 5 months ago
sdk_args.gni Fix typos 1 year ago

README.md

Dart

A client-optimized language for fast apps on any platform

Dart is:

  • Optimized for UI: Develop with a programming language specialized around the needs of user interface creation.

  • Productive: Make changes iteratively: use hot reload to see the result instantly in your running app.

  • Fast on all platforms: Compile to ARM & x64 machine code for mobile, desktop, and backend. Or compile to JavaScript for the web.

Dart's flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:

  • Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.

  • Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).

Dart platforms illustration

License & patents

Dart is free and open source.

See LICENSE and PATENT_GRANT.

Using Dart

Visit dart.dev to learn more about the language, tools, and to find codelabs.

Browse pub.dev for more packages and libraries contributed by the community and the Dart team.

Our API reference documentation is published at api.dart.dev, based on the stable release. (We also publish docs from our beta and dev channels, as well as from the primary development branch).

Building Dart

If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.

There are more documents on our wiki.

Contributing to Dart

The easiest way to contribute to Dart is to file issues.

You can also contribute patches, as described in Contributing.