added listener in flipper plugin for yoga
Summary: Adds YogaEventListener interface and it's implementation which will be used in flipper for events coming from Yoga After this diff , we will start getting layout calculate events in flipper listener Reviewed By: davidaurelio Differential Revision: D15316928 fbshipit-source-id: da3a53374a52386037b553d460038d988b0162c2
This commit is contained in:
committed by
Facebook Github Bot
parent
d7ff5c0689
commit
cf809b8e8b
13
java/com/facebook/yoga/YogaEventListener.java
Normal file
13
java/com/facebook/yoga/YogaEventListener.java
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the LICENSE
|
||||||
|
* file in the root directory of this source tree.
|
||||||
|
*/
|
||||||
|
package com.facebook.yoga;
|
||||||
|
|
||||||
|
public interface YogaEventListener {
|
||||||
|
|
||||||
|
void onLayoutPassEnd(YogaNode node);
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user