FlexLayout icon indicating copy to clipboard operation
FlexLayout copied to clipboard

UITextView cannot be edited

Open kennenfromchina opened this issue 11 months ago • 1 comments

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

kennenfromchina avatar Mar 19 '24 03:03 kennenfromchina

Has any response?

CtrlJone avatar Apr 11 '24 12:04 CtrlJone