enkryptor

Untitled

Feb 19th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. #:kivy 1.0
  2.  
  3. GridLayout:
  4. rows: 3
  5. cols: 2
  6. padding: 10
  7. spacing: 10
  8. Label:
  9. text: 'Введи имя:'
  10. font_size: 24
  11. TextInput:
  12. id: name_input
  13. font_size: 24
  14. padding_y: 75
  15. Label:
  16. Button:
  17. text: 'OK'
  18. font_size: 24
  19. on_press: app.set_text(hello, "Привет, " + name_input.text)
  20. Label:
  21. Label:
  22. id: hello
  23. text: ''
  24. font_size: 24
Advertisement
Add Comment
Please, Sign In to add comment