mirror of https://github.com/kivy/kivy.git
26 lines
483 B
Python
26 lines
483 B
Python
|
from kivy.app import App
|
||
|
from kivy.lang import Builder
|
||
|
|
||
|
kv = '''
|
||
|
FloatLayout:
|
||
|
|
||
|
Button:
|
||
|
text: 'hello world'
|
||
|
size_hint: None, None
|
||
|
pos_hint: {'center_x': .5, 'center_y': .5}
|
||
|
canvas.before:
|
||
|
PushMatrix
|
||
|
Rotate:
|
||
|
angle: 45
|
||
|
origin: self.center
|
||
|
canvas.after:
|
||
|
PopMatrix
|
||
|
'''
|
||
|
|
||
|
class RotationApp(App):
|
||
|
def build(self):
|
||
|
return Builder.load_string(kv)
|
||
|
|
||
|
RotationApp().run()
|
||
|
|