Advertisement
Paikerite

UI

Aug 17th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1.  
  2.  
  3. <Container>:
  4. background_color: 1, 1, 1, 0.25
  5. canvas.before:
  6. Color:
  7. rgba: root.background_color
  8. Rectangle:
  9. size: self.size
  10. pos: self.pos
  11. orientation: 'vertical'
  12. padding: 10 # справо-слево
  13. spacing: 10 # верх-вниз
  14. Label:
  15. text:'''Welcome! Это Speak English.\nСмысл этой программы, правильно выговаривать слова на англиском.\nНа экране выводится слово, вы говорите это слово.\nЕсли вы сказали не правильно то пишетса слово которое вы сказали.'''
  16. text_size: self.size
  17. halign: 'center'
  18. valign: 'top'
  19. font_size: '23sp'
  20. Label:
  21. text:'Громкость вашего голоса'
  22. font_size: '17sp'
  23. ProgressBar:
  24. value: 25
  25. max: 100
  26. BoxLayout:
  27. background_color: 1, 1, 1, 1
  28. canvas.before:
  29. Color:
  30. rgba: root.background_color
  31. Rectangle:
  32. size: self.size
  33. pos: self.pos
  34. orientation:'horizontal'
  35. Label:
  36. bold: True
  37. text:'Тут будет слово'
  38. font_size: '80sp'
  39. BoxLayout:
  40. orientation: 'horizontal'
  41. GridLayout:
  42. cols: 1
  43. CheckBox:
  44. group:'chose'
  45. size_hint: 0.09,0.2
  46. active: True
  47. Label:
  48. text:'Случайное'
  49. size_hint: 0.12,0.2
  50. CheckBox:
  51. group:'chose'
  52. size_hint: 0.09,0.2
  53. Label:
  54. text: 'Свое слово'
  55. size_hint: 0.12,0.2
  56. TextInput:
  57. multiline: False
  58. size_hint: 0.6,0.4
  59. BoxLayout:
  60. orientation: 'horizontal'
  61. Label:
  62. text:'Выбор микрофона'
  63. font_size: '17sp'
  64. size_hint: 1,0.2
  65. Spinner:
  66. values: ('1','2','3')
  67. size_hint: 1,0.3
  68. BoxLayout:
  69. orientation: 'horizontal'
  70. Button:
  71. text: 'Сказать слово'
  72. font_size: '25sp'
  73. size_hint: 0.3, 0.8
  74. Button:
  75. text: 'Начать'
  76. size_hint: 0.3,0.8
  77. font_size: '25sp'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement