close

Useful Gadgets

Useful Gadgets

Python Hello Tushar

from kivy.app import App
from kivy.uix.button import Button

class MainApp(App):
    def build(self):
        button = Button(text='Hello from Kivy By Tushar Gandhi',
                        size_hint=(0.5, .1),
                        pos_hint={'center_x': .5, 'center_y': .5})
        button.bind(on_press=self.on_press_button)

        return button

    def on_press_button(self, instance):
        print('You pressed the button!')

if __name__ == '__main__':
    app = MainApp()
    app.run()
from kivy.app import App from kivy.uix.button import Button class MainApp(App): def build(self): button = Button(text=’Hello from Kivy By Tushar Gandhi’, size_hint=(0.5, .1), pos_hint={‘center_x’: .5, ‘center_y’: .5}) button.bind(on_press=self.on_press_button) return button def on_press_button(self, instance): print(‘You pressed the button!’) if __name__ == ‘__main__’: app = MainApp() app.run()
read more