All Downloads are FREE. Search and download functionalities are using the official Maven repository.

slinky.vr.Text.scala Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
package slinky.vr

import slinky.core.ExternalComponent
import slinky.core.annotations.react

import scala.scalajs.js
import scala.scalajs.js.annotation.JSImport

@react object Text extends ExternalComponent {
  case class Props(numberOfLines: js.UndefOr[Int] = js.undefined,
                   onLayout: js.UndefOr[NativeSyntheticEvent[LayoutEvent] => Unit] = js.undefined,
                   onLongPress: js.UndefOr[() => Unit] = js.undefined,
                   onPress: js.UndefOr[() => Unit] = js.undefined,
                   style: js.UndefOr[js.Object] = js.undefined,
                   testID: js.UndefOr[String] = js.undefined)

  @js.native
  @JSImport("react-360", "Text")
  object Component extends js.Object

  override val component = Component
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy