You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
211 B
Python
10 lines
211 B
Python
2 years ago
|
import kivy
|
||
|
from kivy.app import App
|
||
|
from kivy.uix.floatlayout import FloatLayout
|
||
|
|
||
|
class test3App(App):
|
||
|
def build(self):
|
||
|
return FloatLayout()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
test3App().run()
|