mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
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
b241bc2d0b
commit
a2707ac97d
@@ -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