我正在textinpuBox内显示一些文本,但是该文本的长度比textinputbox的大小大得多,因此如何在该textinputbox中添加垂直滚动条。
kivy file
BoxLayout:
TextInput:
id: tetx
hint_text:""
python file
class MainApp(App):
a=" a long para " ;
self.root.ids.tetx.hint_text= self.a
......