Hello everyone Thanks for the wonderful help here I have a small issue someone can please help me
i am not that good in kivy
i want to create same UI but i want something in this format
enter username entry widget
enter password entry widget
button GO
i tried a lot of stuff
the problem is when i try to use this kind of format the widget are not visible on screen i mean i want to place a label on next row but i am unable to do so can anyone please assist
ScreenManagement:
LoginPage:
UserPage:
<LoginPage>:
name: "login_page"
rows:3
BoxLayout:
TextInput:
id: login
TextInput:
id: passw
password: True # hide password
Button:
text: "go"
on_release: root.verify_credentials()
BoxLayout:
Label:
text:'Hello'
<UserPage>:
name: "user"
Button:
text: "back"
on_release: app.root.current = "login_page"