Advertisement
Paikerite

Main Code

Aug 17th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.74 KB | None | 0 0
  1.  
  2. from kivy.app import App
  3. from kivy.uix.button import Button
  4. from kivy.uix.boxlayout import BoxLayout
  5. from kivy.uix.textinput import TextInput
  6. from kivy.uix.label import Label
  7. from kivy.uix.togglebutton import ToggleButton
  8. from kivy.uix.progressbar import ProgressBar
  9. from kivy.uix.spinner import Spinner
  10. from kivy.core.window import Window
  11. from kivy.config import Config
  12. from kivy.uix.gridlayout import GridLayout
  13.  
  14. Window.size = (800, 600)
  15.  
  16. Config.set('graphics', 'width', '800')
  17. Config.set('graphics', 'height', '600')
  18. Config.write()
  19.  
  20.  
  21. class Container(BoxLayout):
  22.     pass
  23.  
  24.  
  25. class SeApp(App):
  26.     title = 'Speak English'
  27.  
  28.     def build(self):
  29.  
  30.         return Container()
  31.  
  32.  
  33. if __name__ == '__main__':
  34.     SeApp().run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement