handle presses

This commit is contained in:
Hailey
2024-01-18 21:27:43 -08:00
parent 18f818649e
commit 99882c7e39
4 changed files with 59 additions and 35 deletions
@@ -1,21 +1,4 @@
class RNUITextViewChild: UIView {
@objc var text: String = "" {
didSet {
print(text)
let superview = self.superview as? RNUITextView
}
}
@objc var textStyle: TextStyle? {
didSet {
print(textStyle)
}
}
override init(frame: CGRect) {
super.init(frame: frame)
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
@objc var text: String?
@objc var onPress: RCTDirectEventBlock?
}