9
I Use This!
Activity Not Available

News

Posted over 7 years ago by Filip Hráček ([email protected])
The Dart Developer Summit is only 5 weeks ahead, and we’re excited about its agenda: 17 talks, many demos, 25 speakers, plus a lightning talks session and a panel discussion. Expect the full program soon on the site, but here’s a teaser: Major ... [More] improvements to the type system Much better interoperability with JavaScript Improved developer workflow AngularDart 2.0 And much more We will share more details as we approach the summit. Because the TypeScript flavor of Angular just released version 2.0 last week,... [Less]
Posted over 7 years ago by Davy Mitchell ([email protected])
Chocolatey is a package manager for Windows similar to Linux's apt-get, based on Microsoft's Nuget tool and Powershell scripting language. It works from the command-line and from a WPF GUI interface. You can install unmoderated versions by ... [More] specifiying the install version during installation.Chocolatey has also been updated with versions 1.19.1Command line installation: choco uninstall dart-sdkchoco install -y dart-sdk -version 1.19.1To verify you have the right version on your path. dart --versionDart VM version: 1.19.1 (Wed Sep 07... [Less]
Posted over 7 years ago by Shams Zakhour ([email protected])
Static analysis allows you to find problems before executing a single line of code. It’s a powerful tool used to prevent bugs and ensure that code conforms to style guidelines. With the help of the analyzer, you can find simple typos. For example, an ... [More] accidental semicolon made its way into an if statement:The analyzer can also help you find more subtle problems. For example, perhaps you've forgotten to close a sink instance:In the Dart ecosystem, the Dart Analysis Server... [Less]
Posted over 7 years ago by Davy Mitchell ([email protected])
Chocolatey is a package manager for Windows similar to Linux's apt-get, based on Microsoft's Nuget tool and Powershell scripting language. It works from the command-line and from a WPF GUI interface. You can install unmoderated versions by ... [More] specifiying the install version during installation.Chocolatey has also been updated with versions 1.19.0Command line installation: choco uninstall dart-sdkchoco install -y dart-sdk -version 1.19.0To verify you have the right version on your path. dart --versionDart VM version: 1.19.0 (Fri Aug 26... [Less]
Posted over 7 years ago by Filip Hráček ([email protected])
Dart 1.19 is now available. Get it now!We closely collaborate with the Flutter team on providing the best developer experience for Dart for Mobile. This includes language changes that optimize the Flutter development experience. Dart code for Flutter ... [More] apps commonly have long argument lists. Before 1.19, a trailing comma was not allowed after the last argument. This made it really tedious when removing the last argument, or when reordering the... [Less]
Posted over 7 years ago by Natalie Weizenbaum ([email protected])
Long ago, back in the dawn of time, when nary a Dart file was to be found outside of the SDK repository, imports in Dart only supported file paths. As the language got older and an ecosystem began to grow around it, it quickly became clear that paths ... [More] weren’t enough: Dart needed a way to import libraries that didn’t care about the location of the file doing the importing. The language team talked to the VM team and they came up with a solution. In addition to file: URIs, Dart would support a new package: scheme by looking for... [Less]
Posted over 7 years ago by Filip Hráček ([email protected])
Dart 1.19 is now available. Get it now!We closely collaborate with the Flutter team on providing the best developer experience for Dart for Mobile. This includes language changes that optimize the Flutter development experience. Dart code for Flutter ... [More] apps commonly have long argument lists. Before 1.19, a trailing comma was not allowed after the last argument. This made it really tedious when removing the last argument, or when reordering the... [Less]
Posted over 7 years ago by Natalie Weizenbaum ([email protected])
Long ago, back in the dawn of time, when nary a Dart file was to be found outside of the SDK repository, imports in Dart only supported file paths. As the language got older and an ecosystem began to grow around it, it quickly became clear that paths ... [More] weren’t enough: Dart needed a way to import libraries that didn’t care about the location of the file doing the importing. The language team talked to the VM team and they came up with a solution. In addition to file: URIs, Dart would support a new package: scheme by looking for... [Less]
Posted over 7 years ago by Davy Mitchell ([email protected])
Angular 2 is looking very new and shiny, isn't it? There's not a tonne of example code out there so I thought it was about time to pop some on the DID blog. So let's write a text notepad for the web (and use local storage for saving). This is an ... [More] Angular 2 application with a component for the Editor. The Editor has a sub-component that provides a couple of stats. There's not a huge amount to write up on the code. It's interesting to see how Angular 2 differs from the previous version - I found some of the... [Less]
Posted over 7 years ago by Davy Mitchell ([email protected])
Angular 2 is looking very new and shiny, isn't it? There's not a tonne of example code out there so I thought it was about time to pop some on the DID blog. So let's write a text notepad for the web (and use local storage for saving). This is an ... [More] Angular 2 application with a component for the Editor. The Editor has a sub-component that provides a couple of stats. There's not a huge amount to write up on the code. It's interesting to see how Angular 2 differs from the previous version - I found some of the... [Less]