Summary: Migrate com.facebook.yoga.YogaBaselineFunction to Kotlin. Pull Request resolved: https://github.com/facebook/yoga/pull/1831 Test Plan: RN ```sh yarn android yarn test-android ``` Yoga ```sh ./gradlew :yoga:assembleDebug ``` Reviewed By: joevilches, mdvacca Differential Revision: D79897676 Pulled By: cortinico fbshipit-source-id: 2f175bf60a871c4635d1575faec1096f9c970f48
17 lines
493 B
Kotlin
17 lines
493 B
Kotlin
/*
|
|
* Copyright (c) Meta Platforms, Inc. and 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 fun interface YogaBaselineFunction {
|
|
/**
|
|
* Return the baseline of the node in points. When no baseline function is set the baseline
|
|
* default to the computed height of the node.
|
|
*/
|
|
public fun baseline(node: YogaNode, width: Float, height: Float): Float
|
|
}
|