Dart is a class-based, optionally-typed programming language for building web or command-line applications. Dart compiles to modern JavaScript to run on the client and runs natively on the Dart VM for server-side apps.
2
votes
1answer
35 views
Create an instance of an object from a String in Dart?
How would I do the equivalent:
Class<?> c = Class.forName("mypackage.MyClass");
Constructor<?> cons = c.getConstructor(String.class);
Object object = cons.newInstance("MyAttributeValue");
...
0
votes
0answers
50 views
Maven-like structure in Dart seems impossible
I created a little sample on GitHub to test the integration of Dart into a Maven-like structure:
https://github.com/MikeMitterer/dart-WebUIDifferentViews
What I did:
I turned off the build-script ...
1
vote
1answer
39 views
Simple Dart Web Component Not Working
Short Version: The custom web component example in the first link isn't working for me. Why not? I'm running this in Dartium.
Long Version:
I copied and pasted this Dart Web UI example from this ...
4
votes
1answer
43 views
How to add HTML entities in Dart?
I want to add HTML entities like or & using a Dart class. I tried this :
my_element.nodes.add(new Text('&©'));
but as mentioned in Text class doc, markup is ...
1
vote
1answer
46 views
Adding dynamic WebComponent divs
I'm trying to dynamically add a number of divs using Dart. The divs contain a custom web component, and I'm trying to pass in a variable. I want to be able to specify n number of variables, pass them ...
2
votes
1answer
30 views
Using JQuery with Dart for Input autosuggest
I've been having trouble using JQuery with Dart to allow an input field to suggest text from a pre-selected list.
I am getting a NoSuchMethod error with the following code:
js.scoped(() {
...
0
votes
1answer
62 views
Dart drag & drop div
I'm working on drag and drop div and I have the following code:
void init() {
...
baseWindowTitleDiv.on.mouseDown.add((MouseEvent event) => saveWindowXY(event));
...
4
votes
0answers
57 views
How to profile a dart app?
I'm trying the demo of start, which is a pretty simple web site built on dart.
When I run it, the initial memory usage is 10M, but when I visit the home page, refresh it again and again, the memory ...
0
votes
1answer
42 views
What is the best way to add a Dart hello world into my existing Node.js website?
I have been reading tutorials and guides concerning this but have not found a straight forward answer to this.
I currently have an existing website running on a node.js platform, locally on my ...
2
votes
1answer
55 views
Dart capturing parentheses in replaceAll
I'm working on a Dart program that will parse data from an XML file. Unfortunately, the file is a bit of a mess, so I'm doing a ton of regex on it to get it into decent shape. Since Dart, like ...
0
votes
1answer
54 views
Looping through rows
I have an app that displays a number of rows of products. Right now it's hardcoded to use three html rows. I really want to build a template for one row, and loop through and populate as many as I ...
1
vote
1answer
42 views
Dart Read support for binary files
there exist some sample code for an Http Server in the Dart:io section.
Now I will distribute images with this server. To achieve this, I read the requested image file and send its content to the ...
2
votes
1answer
55 views
How to compile dart to javscript v 1.3?
We have written a lot of horrible jscript code for server side classic ASP (the current platform of some very big blue chip companies which are our customers). jscript is more or less javascript ...
1
vote
1answer
44 views
Generated Dart Editor web app not working
I just downloaded the latest version of the dart editor and did the following:
1) Created a new web application. When I try to run, I get the following error:
> Failed to load resource: the ...
0
votes
1answer
67 views
Share types between Dart and Java
Is it possible to integrate the two worlds at least on the data transfer level?
Say i have Java objects which are provided through a Spring WebMVC REST endpoint and my Dart client access these ...
2
votes
0answers
37 views
How to test web components in Dart?
There isn't much documentation insofar on web-ui testing in Dart. Two methods are available : a) run through Chrome's DumpRenderTree or b) a trick that consists of loading the app as is and running ...
1
vote
1answer
29 views
Focus issue when text inputs are used in a template repeat
Input texts are inserted in the DOM using an iterable repeat like the following:
HTML:
<template repeat="value in listValue">
<input type="text" bind-value="listValue[$index]">
...
0
votes
0answers
50 views
Trying to connect Google Apps with Dart
I have weeks working on an application with Dart, and I need to implement a solution to work with my domain users stored in Google Apps.
I have read a lot in Google Developers about OAuth2, I tried ...
3
votes
1answer
53 views
Why only static fields can be declared as 'const'?
I just upgraded my Dart Editor (0.5.16_r23799), and code that was bug/warning free, is not anymore.
class Fubar {
const BAR = 1000000;
Fubar(){
}
}
Lines beginning by const have marker ...
0
votes
1answer
50 views
Dart Pub error on package install?
Dart worked until I updated Editor and now I get errors for existing and new projects. I tried a complete reinstall of Dart. I get the following message when I run pub install on web-ui for a new ...
-1
votes
2answers
67 views
Is it possible to use dartlang to make a multi user (semi-social) website?
Can dartlang do that or is it only possible to make web apps in the strictest sense (one person)? I am interested in dartlang because it seems simpler than node js with socket io and seems to be the ...
1
vote
2answers
45 views
Is there a template creation Event in Darts Web_ui?
Is there anything like a notification mechanism for the instantiation of a template?
Assume the following simple template:
<template iterate="name in names">
<div>{{name}}</div>
...
4
votes
1answer
54 views
Delete selected keys from Dart Map
What is the Dart idiomatic way to remove selected keys from a Map?
Below I'm using a temporary emptyList to hold String keys.
Is there a cleaner way?
List<String> emptyList = new ...
0
votes
1answer
51 views
How to run the localhost server for Dart Web Services (error finding local web service)
I'm following the dart web service tutorial here:
http://www.dartlang.org/articles/json-web-service/
When I try to run the code from the associated git code ...
0
votes
1answer
36 views
Forced to use template?
This code from Dart worries me:
bool get isTemplate => tagName == 'TEMPLATE' || _isAttributeTemplate;
void _ensureTemplate() {
if (!isTemplate) {
throw new UnsupportedError('$this is ...
0
votes
2answers
38 views
Inject html in web component
My dart web component :
<template>
<!-- some html -->
<p>{{content}}</p>
</div>
</template>
works fine with simple text, but something, I want to ...
1
vote
1answer
56 views
Why is there a required build step for Web UI apps?
Why must we run a build.dart script to develop with web_ui ?
I thought it was an frequent noob question about web_ui but I do not find an answer about that. Maybe I miss some web resources or ...
0
votes
1answer
35 views
Is there a way to disable the CSS preprocessor in dart web_ui?
I'm generating my CSS with twitter bootstrap, and want to simply use that CSS. When the dart CSS preprocessor goes over the already process .less files, it breaks some of the definitions.
Initially I ...
0
votes
1answer
52 views
Serving big app as single web_ui app?
After reading the question on how to build a complex web_ui application, I'm wondering if it will be performant enough.
I'm building a fairly large web application and am wondering if I should split ...
0
votes
1answer
49 views
How do method cascades work exactly in dart?
As stated in the dart article:
The ".." syntax invokes a method (or setter or getter) but discards the result, and returns the original receiver instead.
So I assumed that this would work:
...
2
votes
1answer
60 views
How do I get all fields for a class in Dart?
I looked at the dart:mirrors library, and I found ClassMirror. While I saw getField I didn't see access to all fields. I did see getters, though.
If I want to get all fields for a class, do I have to ...
2
votes
2answers
45 views
dart: how do I implement stream join that preserves the order of incoming items?
I'm trying to implement a join operator that takes a list of Streams and outputs a single stream. The problem is the output order is not the same as the input order. StreamController.add is ...
1
vote
1answer
56 views
Embedding Dart into application
I am just experimenting , but want to use Dart as a scripting language for a high performance simulation application I've been working on.(think games)
Basically use Dart in lieu of Lua
I have ...
1
vote
1answer
45 views
How to add an html `class` tag to component element?
I'm wondering if it's possible to assign a class to the component element itself.
Let's say I have this component:
<html>
<body>
<element name="x-preview" ...
1
vote
1answer
28 views
Issue in building the “Dart SDK” on a linux armhf machine
Has someone compiled "Dart SDK" for linux armhf ?
I have tried to build it from within a Raspberry but whit no success.
thanks in advance.
Giovanni.
2
votes
1answer
56 views
What is the Dart null checking idiom or best practice?
I have the following form of assignment & null checks to avoid double lookups in my maps.
Is there a better or more idiomatic way to do this in Dart?
bool isConnected(a, b){
List list;
return ...
1
vote
2answers
137 views
Dynamically add a WebComponent in Dart?
I was attempting to follow the code found here:
component_created_in_code_test.html
component_created_in_code.dart
However, when I get the dependencies and run the code in dartium, I get the ...
3
votes
1answer
39 views
Are there any stream combinator libraries for dart?
Does anyone know of any stream combinator libraries for dart? Things like joining multiple Stream into one Stream, split, combine(Stream, Stream) -> Stream<(A, B)>, etc.
0
votes
2answers
68 views
Using “final” for a Class instantiation
I came across the following code the other day (below) and wondered if it achieves anything of significance in Dart other than the fact that the Class instantiation cannot be changed. I did read some ...
0
votes
3answers
73 views
One-line function in Dart using “=>”
One of the many things that I like about Dart is its lack of verbosity.
For example, a one-line function such as the following :
// example 1
String toStr() => ...
2
votes
1answer
63 views
dart const static fields
I was reading this answer on SO, and I was wondering why the fields are being explicitly declared as both static and const. Are const fields compile time constants in Dart? and if so doesn't that mean ...
1
vote
1answer
52 views
Can I bind an attribute to web component?
If I have global @observable var myObservable = 'foo'; I can pass it to web component like this:
<x-component my-attribute="{{myObservable}}"></x-component>
and it's passed to ...
1
vote
1answer
62 views
What is an Interceptor in dart?
I frequently come across the Interceptor base class in the dart docs, but the link is broken. Does anyone know what is an interceptor?
For instance the Storage class derives from Interceptor
...
0
votes
1answer
42 views
access to inherited fields in dart
abstract class Painter {
CanvasElement canvas;
Painter(this.canvas);
void draw();
}
class SpritePainter extends Painter{
SpritePainter(this.canvas);
void draw(){
...
0
votes
0answers
40 views
Installing Dart SDK on Synology DiskStation
Has anyone ever tried to install the Dart SDK (http://www.dartlang.org/tools/sdk/) on a Synology DiskStation?
I've unzipped the SDK on my DS413, set the PATH variable to the /bin-directory, but a ...
0
votes
2answers
28 views
Dart lang setting request header give Breaking on exception: Error: InvalidStateError: DOM Exception 11
I am trying to resolve how to set a request header in Dart in a HttpRequest
HttpRequest req = new HttpRequest();
req.setRequestHeader("Content-type","application/json");
req.open("Get", gotest);
...
1
vote
1answer
45 views
referencing local dart libraries
I am writing 4 dart libraries A, B, C, and D and they are all early in development so I don't want to publish them on pub yet.
It is also the case that only A, B and C are public libraries which all ...
0
votes
1answer
40 views
Class instantiation in Dart and sharing code between Class objects
When a class that contains code is instantiated, is the code is the class shared automatically by other instantiations of that same class? Eg. The data in the class that is instantiated may be ...
0
votes
2answers
47 views
Dart is there a way to measure execution time for a small code
I've made some snippet involving parsing a html and wants to know if the code runs slow or not, is this doable?
3
votes
1answer
49 views
How do I parse a form submission with Dart?
I wrote an HTTP server with Dart, and now I want to parse form submits. Specifically, I want to handle x-url-form-encoded form submit from HTML forms. How can I do this with the dart:io library?

