Kotlinify LayoutCreateAnimation (#43740)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/43740

Changelog: [Internal]

As part of the Sustainability Week (see [post](https://fb.workplace.com/groups/251759413609061/permalink/742797531171911/)).

Reviewed By: rshest

Differential Revision: D55588908

fbshipit-source-id: 4e502e32e6b43ca1df866ab7ba4653d3cee0ec65
This commit is contained in:
Fabrizio Cucci
2024-04-02 12:05:06 -07:00
committed by Facebook GitHub Bot
parent 1a164fae6a
commit 1252f63c18
@@ -5,19 +5,13 @@
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.uimanager.layoutanimation;
import com.facebook.infer.annotation.Nullsafe;
package com.facebook.react.uimanager.layoutanimation
/**
* Class responsible for handling layout view creation animation, applied to view whenever a valid
* config was supplied for the layout animation of CREATE type.
*/
/* package */ @Nullsafe(Nullsafe.Mode.LOCAL)
class LayoutCreateAnimation extends BaseLayoutAnimation {
internal class LayoutCreateAnimation : BaseLayoutAnimation() {
@Override
boolean isReverse() {
return false;
}
override fun isReverse(): Boolean = false
}