Files
bsky-social-app/modules/react-native-ui-text-view/ios/RNUITextViewChild.swift
T
2024-01-18 21:14:38 -08:00

22 lines
408 B
Swift

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")
}
}