Commit 9d9b31a4 authored by Mathieu's avatar Mathieu

Uuid library import fix

parent 859e4575
...@@ -3,4 +3,4 @@ version: 1.0.0 ...@@ -3,4 +3,4 @@ version: 1.0.0
description: TodoMVC built with Dart. Simple, vanilla Dart. description: TodoMVC built with Dart. Simple, vanilla Dart.
dependencies: dependencies:
browser: any browser: any
uuid: 0.2.0 uuid: any
\ No newline at end of file \ No newline at end of file
...@@ -3,7 +3,7 @@ library todomvc; ...@@ -3,7 +3,7 @@ library todomvc;
import 'dart:html' import 'dart:html'
show Element, InputElement, KeyCode, KeyboardEvent, querySelector, window; show Element, InputElement, KeyCode, KeyboardEvent, querySelector, window;
import 'dart:convert' show HtmlEscape, JSON; import 'dart:convert' show HtmlEscape, JSON;
import 'package:uuid/uuid.dart' show Uuid; import 'package:uuid/uuid_client.dart';
import 'package:todomvc_vanilladart/models.dart' show Todo; import 'package:todomvc_vanilladart/models.dart' show Todo;
part 'TodoWidget.dart'; part 'TodoWidget.dart';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment