sethladd | 8 years ago | on: Initial experience creating cross-platform apps with Flutter and Dart
sethladd's comments
sethladd | 8 years ago | on: Initial experience creating cross-platform apps with Flutter and Dart
Thanks for the feedback! We are working on improving our accessibility now, which is required for our business-critical Google users and others. For example, you can follow this issue if you're interested: https://github.com/flutter/flutter/issues/12311
sethladd | 8 years ago | on: Initial experience creating cross-platform apps with Flutter and Dart
Thanks for the feedback. We're currently exploring how to do inline video, which we think will teach us about techniques for inline maps. These are very top requested features. Stay tuned! :)
sethladd | 8 years ago | on: Initial experience creating cross-platform apps with Flutter and Dart
We're working on accessibility right now, it's incredibly important to us and our users. A big driver here is Google's usage of Flutter. There are business-critical teams at Google right now using Flutter, and they can't launch until a11y is finished. So we're working to finish and ship it. Stay tuned!
sethladd | 8 years ago | on: Initial experience creating cross-platform apps with Flutter and Dart
> What do I see when I'm running an older native version?
You will see exactly the pixels that your designer intended and your developer coded. :) Apps built with Flutter ship the renderer and framework inside the app, which helps ensure consistency and fidelity across devices, OEMs, OS, and platform. This is particularly important for brands that want a brand-first design delivered consistently to all their users. Hope that helps!
sethladd | 8 years ago | on: Flutter – A mobile app SDK for iOS and Android
sethladd | 8 years ago | on: Flutter – A mobile app SDK for iOS and Android
sethladd | 8 years ago | on: Developer UX at Google
We're looking at ways to make it easier to glance at and understand Flutter code. Here's one experiment: https://github.com/Dart-Code/Dart-Code/issues/383
Notice how we're auto-inserting "synthetic" comments to clearly mark the closing parens/brackets. So far, the feedback has been very positive, it helps improve scanning and reading the code.
Feedback welcome (via the GitHub issue :)
sethladd | 8 years ago | on: Exploring Flutter for Cross-Platform Mobile Development
One of the reasons we picked Dart was that is compiles to ARM (native) code. Dart has been pretty efficient for the project so far, but we haven't yet looked very deeply at battery life. Something to keep an eye on!
sethladd | 8 years ago | on: Exploring Flutter for Cross-Platform Mobile Development
We're adding more Cupertino (iOS-flavor) widgets. A few that we already have: spinner, toggle slider, button, alert. Check out the library (https://docs.flutter.io/flutter/cupertino/cupertino-library....) and let us know which ones you'd like to see next! https://flutter.io/issues
Thanks!
sethladd | 9 years ago | on: Fuchsia: a new operating system
You can use Flutter today to write an app that runs on iOS and Android. :)
sethladd | 10 years ago | on: Flutter – Cross-platform mobile framework from Google
sethladd | 10 years ago | on: Flutter – Cross-platform mobile framework from Google
It's true that Dart is an optionally-typed system, and that type annotations are ignored at runtime. That may seem scary at first, but we built an analyzer that statically analyzes your program and gives you feedback (errors, warnings, and hints).
Dart is used at Google to build very big and complex apps, and our engineers use the analyzer in their build/CI systems to check their program. The analyzer is also wired into their IDEs. So they get feedback if a method doesn't exist, or you are trying to pass a variable into a method that is expecting something else.
The Dart team is also working on an optional analyzer feature called "strong mode", which does even more static checking. In strong mode, you can't write code that is incorrectly typed (but, you can still write code that is dynamically typed, if you want to).
Our experience, at least internally, is that as your program matures and grows in complexity, developers appreciate the extra checks provided by strong mode. The win is that it's something you can turn on later, when you're ready. Early on in the program's development, you are probably refactoring a lot and you don't want to bother with strong mode. This scalability is a win for us.
sethladd | 10 years ago | on: Flutter – Cross-platform mobile framework from Google
sethladd | 10 years ago | on: Flutter – Cross-platform mobile framework from Google
Yes, strong mode is something the Flutter team uses to help check their code.
Dart is pretty cool this way: you can scale up or down how much "typiness" you want. As your program matures, you can dial up the static type checking. Hence: strong mode.
sethladd | 11 years ago | on: “We have decided not to integrate the Dart VM into Chrome”
[disclaimer: I'm on the Dart team]
sethladd | 11 years ago | on: “We have decided not to integrate the Dart VM into Chrome”
[disclaimer: I work on the dart team]
sethladd | 11 years ago | on: Spicing Up Dart with Side Effects
[I'm a PM on Dart, and would love to learn more.]
Cheers!
sethladd | 11 years ago | on: Angular 2: Built on TypeScript
sethladd | 11 years ago | on: Evolving the Dart Language with Dart Enhancement Proposals
Check out https://api.dartlang.org for our core libraries... lots of good stuff in there (collections, async, networking, files, sockets, etc).
And if you don't find what you're looking for, check out https://pub.dartlang.org for third-party packages. Everything from crypto to game loops to graphics to frameworks to database drivers, etc.
As for scripting, you can definitely use Dart for console scripts. You can write really simple scripts with just functions. You can read stdio and stdout. (you can even do it synchronously, which is much easier for console scripts :)
Thanks for your feedback! I opened https://github.com/flutter/flutter/issues/12438 to track the "not playing a sound when tapped". We're currently working on improving our accessibility support.