Kivy:如何制作不可编辑的文本输入?

Mik*_*lta 6 textinput kivy

如何使用户无法编辑文本输入?

TextInput:
    id:out
    background_color: (0, 0, 0, 1)
    foreground_color: (0, 1, 0, 1)
    multiline: True
    text:""
Run Code Online (Sandbox Code Playgroud)

Yoa*_*ner 7

readonly物业是你的朋友

TextInput:
    id:out
    background_color: (0, 0, 0, 1)
    foreground_color: (0, 1, 0, 1)
    multiline: True
    text:""
    readonly: True 
Run Code Online (Sandbox Code Playgroud)