This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我正在使用 pydroid。当我尝试执行程序时,它只是显示一个空白屏幕。
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def built(self):
return Button(text="Hello World")
if __name__=='__main__':
MyApp().run()