I've been working with kivymd for awhile and I wanna create a screen in which it's contents will change depending on content that is clicked for example let's say I have a home screen with products and when each product is clicked another screen will open with the image and details of that specific product and that should be possible for each other product
Asked
Active
Viewed 158 times
1 Answers
0
You can use 2 screens for this.
MainScreen
to show all the productsProductscreen
to show details of the product.
You can add the contents on the screen
according to the product being clicked. This way, you do not need to create a separate screen
for each product.
Note: Since the contents on the productscreen
will be added at runtime, you will need to write it in .py
file and not .kv
file.

Chitkaran Singh
- 1,466
- 2
- 10
- 18