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:
Sidharth Guglani 2019-05-15 01:14:36 -07:00 коммит произвёл Facebook Github Bot
Родитель b241bc2d0b
Коммит a2707ac97d
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -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);
}