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.
0
votes
1answer
37 views
Dart code compiled to JS seems to be faster than Dart (in Dartium)
Impressed by the performance of Dart I put together a quite simple web-app to render the Mandelbrot set in Dart (using HTML5 canvas). This is by all means not meant as a realistic performance test. ...
2
votes
1answer
60 views
Can Dart be used as a general-purpose language? [closed]
Dart supports interfacing with the native libraries (Ref: http://www.dartlang.org/articles/native-extensions-for-standalone-dart-vm/). There are some decent libraries available for socket ...
1
vote
1answer
27 views
js-interop testing if javascript object has a property
Is it possible to test if a javascript object contains a property?
I'm currently wrapping try/catch for each property I'd like to access. I dont think this is an efficient way to check if properties ...
1
vote
1answer
31 views
Does Dart support interfacing with the native libraries?
As the server-side part becomes more complex, developers will need to leverage the existing software. So, does Dart support interfacing with the native libraries (C libraries, in particular)?
2
votes
2answers
42 views
Dart: handle incoming HTTP requests in parallel
I am trying to write an HTTP server in Dart that can handle multiple requests in parallel. I have been unsuccessful at achieving the "parallel" part thus far.
Here is what I tried at first:
import ...
2
votes
1answer
34 views
Is there any documentation about build.dart?
Based on how web_ui projects work, it looks like the IDE will run any build.dart file in the project as soon as some file is changed (or saved?). Is there any documentation about what arguments are ...
0
votes
2answers
33 views
Dart HTML5 Drag and Drop in Internet Explorer 9
I'm trying to implement HTML5 Drag and Drop with Dart. To get Drag and Drop working in IE9 with elements other than links and images, I use a workaround (see Internet Explorer 9 Drag and Drop (DnD) ...
2
votes
1answer
48 views
Warning that 'imported libraries have the same name when they DO NOT"
I have the following import statements in a class
import 'package:dart_web_toolkit/ui.dart';
import '../../util/flex_table_builder.dart' as ftBldr;
import '../factors_list_view.dart';
class ...
2
votes
1answer
58 views
Dart - named parameters using a Map
I would like to know if I can call a function with name parameters using a map e.g.
void main()
{
Map a = {'m':'done'}; // Map with EXACTLY the same keys as slave named param.
slave(a);
}
void ...
1
vote
2answers
31 views
change length of svg line in DART
I have SVG line in HTML and want to change the end coordinate.
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" >
<line id="myline" x1="0" y1="0" x2="200" y2="200"
...
0
votes
1answer
85 views
how to periodically update native c++ function
inside the native sample_extension example I added a function to get the current active window title.
Inside dart I want to periodically call and print the getActivetWindowTitle
import ...
0
votes
1answer
36 views
Rikulo Stream serve specified file
How do I serve a file that I specify in Rikulo stream without doing a redirect. I was trying
new ResourceLoader('my_app').load(connect, 'alternate.html');
from the plugin package but I receive the ...
0
votes
1answer
33 views
dart_api.h not found when build library dart_sqlite
As i ask before, to use dart-sqlite, I must install dart-ext:sqlite first. But every time I try to build it, I found error= Can not found dart_api.h. how to fix it?
I install it on ubuntu 12.04.
...
0
votes
1answer
49 views
Dart questions on StringBuffer
After reading the source code of hart, there's this thing I don't understand. He's using StringBuffer to create a class, here's taken from the source :
var buff = new StringBuffer('''
class View {
...
1
vote
0answers
44 views
Usage of local dart library
I have created some local libraries in my dart lib directory.
These libraries are visible in dart packages for each newly created folder in the web directory. However, when I attempt to access them ...
1
vote
1answer
78 views
How to connect Dart to SQLite?
My old application used web2py with SQLite as the database. Now I want to try porting this app to Dart and again use SQLite as the database.
I can't find any documentation on how to use it. I just ...
0
votes
2answers
32 views
Dart layout convention regarding internationalization bundles
Is there a recommended best practice regarding the darts folder layout convention regarding internationalization bundles and folder within the dart project hierarchy?
1
vote
1answer
41 views
Rikulo websockets and channels
Does rikulo stream v 0.7.2 support web sockets with different channels?
I have seen so far only examples with static resource files.
0
votes
1answer
39 views
Is it possible to mock classes that only expose Factory constructors?
Recently I had a need to mock the Timer class in test. This turned out to be an issue because Timer doesnt have any public default constructors because it uses all factory constructors. Is it possible ...
1
vote
1answer
31 views
Rikulo stream base folder
Is it possible to choose to serve files only from a specific folder using Rikulo stream? I've tried
new StreamServer(uriMapping: _mapping, homeDir: 'my/web/webapp/app')
but I'm not getting the ...
-1
votes
1answer
52 views
Trouble reading a local .txt file to display its contents in webpage (Dart Programming) [closed]
I want access to each individual line of the specific file to display its stats on a webpage. What steps or code should I use to go about this.
0
votes
0answers
60 views
what is non-standard about this package directory structure?
I have the structure shown below. When I run dartdoc from the DartEditor and from the command line I get errors regarding "no such file" on an import. When I run my Dart app bin/ebisu.ebisu.dart, it ...
1
vote
1answer
57 views
Accessing Template Elements Prorgramatically in Web UI
Is there any easy way to access the associated element object of an element declared in your template. For instance say I have a button on my template and I want to access the ButtonElement object so ...
0
votes
1answer
64 views
Dart when to use the mirror API
This may be a silly question, so sorry for asking this, and fyi I'm new to this kind of stuff.
After reading the documentation about mirrors, I can only grasp that the mirrors API is just like ...
4
votes
2answers
87 views
Dart ways of handling Futures
I saw a Dart screencast about Futures and how to handle them. It said there are two ways of handling some Futures that mixed with sync code. This is the example code:
import 'dart:async';
Map ...
1
vote
1answer
58 views
Store and retrieve Google Dart objects in JavaScript library containers
Store and retrieve Google Dart objects in JavaScript library containers
In a Dart application I am using an external JavaScript library to do various matrix calculations.
The specific functionality ...
1
vote
2answers
57 views
Executing code before render
When I load my page, I see the original page (only for a short time) before Dart starts modifying the content. How do I avoid this?
Example:
File index.html
<html>
<head>
...
1
vote
1answer
72 views
How to create an HTML link in Dart?
I would like to create an HTML link with Dart.
Where in HTML I would write:
You can click <a href="url_1">here</a> and <a href="url_2">there</a>.
I do not know how to do it ...
1
vote
3answers
72 views
How do you determine the input type in Dart?
I'd like to find all the radio buttons on a form and leave the other input types alone. My code looks like this:
form.queryAll("select, input").forEach((Element el) {
if (el is ...
0
votes
1answer
68 views
how do I simply run latest examples of project like web ui or widgets
If something I have specifies web ui in its pubspec it eventually ends up in a place like $HOME/.pub-cache/hosted/pub.dartlang.org/web_ui-0.4.7+3. I noticed that the todomvc appears in the example ...
2
votes
1answer
96 views
How to implement Iterable<E> in dart?
I still havn't understood how to deal with Iterable/Iterator in Dart.
I think I have to give up and simply return Lists but that's not what I want since it will
lead bad performance in my case.
What ...
4
votes
1answer
66 views
How to style internal elements of a Dart Web Component?
I am playing with the popover component in the Dart "bee" Web Components package (bee)
However, I can't see a way of changing the default styling for internal elements of the component. I want to ...
4
votes
1answer
91 views
How to convert an object containing DateTime fields to JSON in Dart?
I try to convert an object to JSON.
var obj = { "dt": new DateTime.now() };
var s = stringify(obj);
The runtime throws an exception: "Calling toJson method on object failed."
That's expected ...
0
votes
1answer
49 views
Ability to make interactive contrls on canvas
i am wanting to attempt to write a 2d CAD package with Rikulo.
THis requires interacting with the shapes and having a sense of Paper space scale.
DO you think this is possible ?
Maybe you can point ...
2
votes
2answers
51 views
How do you replace a listener in dart?
I have a class that creates a button and connects a listener to the click event. In a sub class I'd like to replace the superclass handler. This code adds a listener:
...
0
votes
1answer
49 views
Reading text file using readAsString() and using the result
The following example (1) reads a file and prints the contents without explicitly assigning the file contents to a variable (ie. “.then(stdout.write)”). However, if I want to do more than just print ...
0
votes
1answer
86 views
Data-binding via Dart web-ui in a Bootstrap Popover
I'm trying to use two-way data-binding to a Dart variable inside a Bootstrap Popover with no success. My code looks something like:
<!DOCTYPE html>
<html>
<head>
<meta ...
0
votes
1answer
45 views
Bypass Certificate Error Using Http
I'm trying to create a proxy server that access third-party API, but their development end point have certificate error. Is there anyway to bypass ssl error when using http.dart?
import ...
0
votes
1answer
39 views
dart regex matching and get some information from it
For practice, I decided to build something like a Backbone router. The user only needs to give the regex string like r'^first/second/third/$' and then hook that to a View.
For Example, suppose I have ...
0
votes
3answers
109 views
How to create forms in dart?
What is the best way to create forms (textfields, checkboxes, radio buttons, ...) and handle the data after the user's input?
Just use web components as dart's web ui?
...
1
vote
1answer
44 views
Print statement versus stdout performance and Dart-Editor versus command-line performance
This is probably not of major importance, however I have noticed during testing that the performance of the print statement and also stdout is much faster in the Dart-Editor than from the ...
0
votes
1answer
31 views
Creating a Rikulo custom view and give his children correct position
Why everything has absolute position?
I'm trying to make a Panel with a title, the title is behind the child nodes of the panel, because the children are in absolute position.
How I can build custom ...
2
votes
1answer
60 views
How do I get a reference to an event stream from a within an event handler?
I have a need to manage a global state of a number of web components on my web page. (e.g. Each web component has a "select" button/function and I track components to make sure only one component is ...
1
vote
1answer
98 views
Dart: Float32Array not loaded
While trying to run some three.dart example codes, I get the following exception:
Exception: 'package:three/src/core/Matrix4.dart': Error: line 25 pos 24: type 'Float32Array' >is not loaded
: ...
1
vote
1answer
52 views
How to generate javascript with Dart editor
When I select Tools > Generate Javascript in Dart editor, I get an error message saying that I need to select a Dart library. I want to convert the entire project into javascript. I can't figure out ...
3
votes
1answer
64 views
How to terminate a long running isolate #2
I am trying to understand how I shall port my Java chess engine to dart.
So I have understood that I should use an Isolates to run my engine in parallell with the GUI but how can I force the engine ...
2
votes
1answer
68 views
why does this Dart broadcast stream not accept multiple listen calls
import 'dart:async';
void main() {
var dog = new Dog();
showTheDogACat(dog);
print('outside');
dog.bark();
}
class Cat{
void runAway(msg){
print("$msg I'm running away!");
}
}
class ...
1
vote
1answer
56 views
Is it possible to instantiate a class from a dynamic var?
I have many objects of the same base type. I want to build a generic function to create them. Code sample :
class Grid extends Display { ....
class Start extends Display { ....
class MainClass {
...
1
vote
1answer
87 views
Problems with JS Interop when compiled to javascript
I'm using Parse.com as my server solution. I'm loading their framework.js in my dart.html header section.
First of all, everything(CRUD) works great running in Dartium.
Now my goal is to make it work ...
0
votes
1answer
51 views
async Future StreamSubscription Error
Could someone please explain what's wrong with the following code. I'm making two calls to the function fInputData. The first works ok, the second results in an error :
"unhandled exception"
"Bad ...



