make use of rctshadowview

This commit is contained in:
Hailey
2024-01-18 21:14:38 -08:00
parent 7134e1106e
commit 18f818649e
23 changed files with 934 additions and 2 deletions
@@ -0,0 +1,21 @@
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")
}
}