0
제 목표는 스크린 샷과 같이 화면 상단의 작업 표시 줄에 3 개의 버튼을 추가하는 것입니다. 도움을 받으십시오.앵커 레이아웃의 작업 표시 줄 - KIVY. python
.kv 파일
AnchorLayout:
anchor_x: 'center'
anchor_y: 'top'
BoxLayout:
padding: 30
size_hint: 1, .1
orientation: 'horizontal'
Button:
text: 'Back'
on_press: root.manager.current = 'mainpage'
TextInput:
text: 'Search'
Button:
text: 'Fav'
즐겨 찾기와 뒤로 가기 버튼은 나중에 아이콘으로 변경되며, 검색
평 파일 드롭 다운을 할 것이다
class MainPage(Screen):
pass