Skip to content

Commit

Permalink
added listener in flipper plugin for yoga
Browse files Browse the repository at this point in the history
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
  • Loading branch information
SidharthGuglani-zz authored and facebook-github-bot committed May 15, 2019
1 parent b241bc2 commit a2707ac
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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);

}

0 comments on commit a2707ac

Please sign in to comment.