add files

This commit is contained in:
jianping.xwh
2019-01-08 17:47:25 +08:00
commit 49b86b4c70
68 changed files with 4429 additions and 0 deletions

8
lib/common/eventBus.dart Normal file
View File

@ -0,0 +1,8 @@
import 'package:event_bus/event_bus.dart';
EventBus eventBus = new EventBus();
class MyEvent {
String text;
MyEvent(this.text);
}