1
我試圖在我的KV語言上使用規則來生成類,但是我總是得到一個錯誤。Kivy,KV語言的動態類
<SimpleInputLayout>:
orientation: 'vertical'
message_label: message
user_input: input
Label:
id: message
text: root.message_to_user
FloatInput: if input_type == 'float' else TextInput:
id: input
focus: True
我能做些什麼,使這個作品,如果input_type
等於'float'
我希望我的input
類是FloatInput
,否則一個TextInput
。