Commit 928c6290 authored by Ian Hickson's avatar Ian Hickson

Remove last traces of onEvent.

parent 5ddbc03b
......@@ -46,10 +46,8 @@ void beginFrame(Duration timeStamp) {
ui.window.render(scene);
}
void handleEvent(String eventType, double timeStamp) {
if (eventType == 'back') {
print('Pressed back button.');
}
void handlePopRoute() {
print('Pressed back button.');
}
void handlePointerPacket(ByteData serializedPacket) {
......@@ -73,7 +71,7 @@ void main() {
print('Hello, world');
color = new ui.Color.fromARGB(255, 0, 255, 0);
ui.window.onBeginFrame = beginFrame;
ui.window.onEvent = handleEvent;
ui.window.onPopRoute = handlePopRoute;
ui.window.onPointerPacket = handlePointerPacket;
ui.window.scheduleFrame();
}
......@@ -37,9 +37,8 @@ class RenderImageGrow extends RenderImage {
RenderImageGrow image;
void handleEvent(String eventType, double timeStamp) {
if (eventType == "back")
activity.finishCurrentActivity();
void handlePopRoute() {
activity.finishCurrentActivity();
}
final Map<int, Touch> touches = <int, Touch>{};
......@@ -116,6 +115,6 @@ Pancetta meatball tongue tenderloin rump tail jowl boudin.""";
updateTaskDescription('Interactive Flex', topColor);
new FlutterBinding(root: root);
ui.window.onEvent = handleEvent;
ui.window.onPopRoute = handlePopRoute;
ui.window.onPointerPacket = handlePointerPacket;
}
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