Field noteEN1 min read
Kivy Course #1 – Introduction With a Basic App
Archive note: This article is preserved in its original form. Versions, links or commands may now be outdated.
At the first code of the Kivy course consists of a button which covers the entire screen and does nothing. You can just click the button and see that it is clicked with interaction. The code is:
from kivy.app import App
from kivy.uix.button import Button
class BenimUygulamamApp(App):
def build(self):
return Button(text="Buton", font_size="50sp")
if __name__ == "__main__":
BenimUygulamamApp().run()
Detailed explanation will be added soon.