June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -0,0 +1,20 @@
from kivy.app import App
from kivy.uix.floatlayout import FloatLayout
from kivy.uix.button import Button
from kivy.uix.popup import Popup
from kivy.uix.label import Label
class GoodByeApp(App):
def build(self, *args, **kwargs):
layout = FloatLayout()
ppp = Popup(title='Goodbye, World!',
size_hint=(0.75, 0.75), opacity=0.8,
content=Label(font_size='50sp', text='Goodbye, World!'))
btn = Button(text='Goodbye', size_hint=(0.3, 0.3),
pos_hint={'center': (0.5, 0.5)}, on_press=ppp.open)
layout.add_widget(btn)
return layout
GoodByeApp().run()

View file

@ -0,0 +1,29 @@
from kivy.app import App
from kivy.lang.builder import Builder
kv = '''
#:import Factory kivy.factory.Factory
FloatLayout:
Button:
text: 'Goodbye'
size_hint: (0.3, 0.3)
pos_hint: {'center': (0.5, 0.5)}
on_press: Factory.ThePopUp().open()
<ThePopUp@Popup>:
title: 'Goodbye, World!'
size_hint: (0.75, 0.75)
opacity: 0.8
Label:
text: 'Goodbye, World!'
font_size: '50sp'
'''
class GoodByeApp(App):
def build(self, *args, **kwargs):
return Builder.load_string(kv)
GoodByeApp().run()