Skip to content

Commit

Permalink
Migrate ReactOverflowView to kotlin (facebook#47750)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#47750

Migrate ReactOverflowView to kotlin

changelog: [internal] internal

Differential Revision: D66217252
  • Loading branch information
mdvacca committed Dec 12, 2024
1 parent 06751aa commit 6336288
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 25 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* 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.react.uimanager

/**
* Interface that should be implemented by [View] subclasses that support [overflow] style. This
* allows the overflow information to be used by [TouchTargetHelper] to determine if a View is
* touchable.
*/
public interface ReactOverflowView {
/**
* Gets the overflow state of a view. If set, this should be one of [ViewProps#HIDDEN],
* [ViewProps#VISIBLE] or [ViewProps#SCROLL].
*/
public val overflow: String?
}

0 comments on commit 6336288

Please sign in to comment.