31 lines
719 B
Swift
31 lines
719 B
Swift
@objc(RNUITextViewManager)
|
|
class RNUITextViewManager: RCTViewManager {
|
|
override func view() -> (RNUITextView) {
|
|
return RNUITextView()
|
|
}
|
|
|
|
@objc override static func requiresMainQueueSetup() -> Bool {
|
|
return true
|
|
}
|
|
|
|
override func shadowView() -> RCTShadowView {
|
|
// Pass the bridge to the shadow view
|
|
return RNUITextViewShadow(bridge: self.bridge)
|
|
}
|
|
}
|
|
|
|
@objc(RNUITextViewChildManager)
|
|
class RNUITextViewChildManager: RCTViewManager {
|
|
override func view() -> (RNUITextViewChild) {
|
|
return RNUITextViewChild()
|
|
}
|
|
|
|
@objc override static func requiresMainQueueSetup() -> Bool {
|
|
return true
|
|
}
|
|
|
|
override func shadowView() -> RCTShadowView {
|
|
return RNUITextViewChildShadow()
|
|
}
|
|
}
|