├── .analysis_options ├── .atomignore ├── .bazelrc ├── .gitignore ├── README.md ├── lib └── index.dart ├── pubspec.lock ├── pubspec.yaml ├── serve.sh ├── test ├── todo_test.dart └── todo_test.html ├── todo_common ├── lib │ └── model.dart └── pubspec.yaml ├── todo_main ├── lib │ ├── todo_list.dart │ ├── todo_list.html │ ├── todo_main.dart │ └── todo_main.html ├── pubspec.lock └── pubspec.yaml ├── todo_renderer ├── lib │ ├── todo_renderer.dart │ └── todo_renderer.html ├── pubspec.lock └── pubspec.yaml └── web ├── images └── logo.png ├── index.html ├── main.dart └── sw-import.js /.analysis_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/.analysis_options -------------------------------------------------------------------------------- /.atomignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | 3 | -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/.bazelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/lib/index.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- 1 | ( cd bazel-bin ; serve ) 2 | -------------------------------------------------------------------------------- /test/todo_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/test/todo_test.dart -------------------------------------------------------------------------------- /test/todo_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/test/todo_test.html -------------------------------------------------------------------------------- /todo_common/lib/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_common/lib/model.dart -------------------------------------------------------------------------------- /todo_common/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_common/pubspec.yaml -------------------------------------------------------------------------------- /todo_main/lib/todo_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/lib/todo_list.dart -------------------------------------------------------------------------------- /todo_main/lib/todo_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/lib/todo_list.html -------------------------------------------------------------------------------- /todo_main/lib/todo_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/lib/todo_main.dart -------------------------------------------------------------------------------- /todo_main/lib/todo_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/lib/todo_main.html -------------------------------------------------------------------------------- /todo_main/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/pubspec.lock -------------------------------------------------------------------------------- /todo_main/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_main/pubspec.yaml -------------------------------------------------------------------------------- /todo_renderer/lib/todo_renderer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_renderer/lib/todo_renderer.dart -------------------------------------------------------------------------------- /todo_renderer/lib/todo_renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_renderer/lib/todo_renderer.html -------------------------------------------------------------------------------- /todo_renderer/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_renderer/pubspec.lock -------------------------------------------------------------------------------- /todo_renderer/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/todo_renderer/pubspec.yaml -------------------------------------------------------------------------------- /web/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/web/images/logo.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/web/index.html -------------------------------------------------------------------------------- /web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polymer-dart/todo_ddc/HEAD/web/main.dart -------------------------------------------------------------------------------- /web/sw-import.js: -------------------------------------------------------------------------------- 1 | importScripts('bower_components/platinum-sw/service-worker.js'); 2 | --------------------------------------------------------------------------------