FlexLayout
FlexLayout copied to clipboard
UITextView cannot be edited
In the sample project, the last UITextView cannot edit and select text The file directory is /FlexLayout/Example/FlexLayoutSample/UI/Examples/YogaExampleF/YogaExampleFView.swift Line 145 iPhone12, iOS17.3.1 macOS14.3, Xcode15.2
$0.addItem().direction(.row).alignItems(.baseline).marginBottom(20).define {
let label = UILabel()
label.font = .systemFont(ofSize: 12)
label.text = "About:"
label.numberOfLines = 2
$0.addItem(label).marginRight(5).markDirty()
let info = UITextView()
info.font = .systemFont(ofSize: 16)
info.text = "Place text here!"
$0.addItem(info).grow(1).height(200).markDirty()
}
Has any response?