After setting up the project per instructions, When we drop the image the widow closes immediately with the terminal showing the following error:

The error originated from the Snackbar component where we were passing the text key to it. This is because kivymd module have some changes from version 1.1.1 to 1.2.0 as shown here
The module versions are:
kivy: 2.3.0
kivymd: 1.2.0
Suggested Fix:
Update replace of instances for Snackbar component as per the latest version i.e. 1.2.0 in the main-GUI.py file
Existing Code:
Snackbar(text="...").open()
Code to fix the issue:
MDSnackbar(MDLabel(text="...")).open()
After setting up the project per instructions, When we drop the image the widow closes immediately with the terminal showing the following error:
The error originated from the
Snackbarcomponent where we were passing thetextkey to it. This is becausekivymdmodule have some changes from version1.1.1to1.2.0as shown hereThe module versions are:
kivy:2.3.0kivymd:1.2.0Suggested Fix:
Update replace of instances for
Snackbarcomponent as per the latest version i.e.1.2.0in themain-GUI.pyfileExisting Code:
Code to fix the issue: