[[oktatas:telefon:kivy|< Kivy]]
====== Kivy kezdés ======
* **Szerző:** Sallai András
* Copyright (c) Sallai András, 2021
* Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]]
* Web: https://szit.hu
===== Weblap =====
* https://kivy.org/
* https://kivy.org/doc/stable/
* https://realpython.com/mobile-app-kivy-python/
===== Telepítés =====
sudo apt-get install -y \
python3-pip \
build-essential \
git \
python3 \
python3-dev
===== Első program =====
from kivy.app import App
from kivy.uix.label import Label
class MainApp(App):
def build(self):
label = Label(text='Helló Világ',
size_hint=(.5, .5),
pos_hint={'center_x': .5, 'center_y': .5})
return label
if __name__ == '__main__':
app = MainApp()
app.run()