The problem is your kv file is being loaded twice.
Notice the error in the log: [WARNING] [Lang ] The file C:\Users\ellio\PycharmProjects\KivyHelpv230\eticaretbaris\main.kv is loaded multiples times, you might have unwanted behaviors.
Kivy will try to automatically load a kv file with the same name as the App. Your app is named "MainApp", and the kv file is named "main.kv". You are also manually loading the kv file.
Remove the line:
return Builder.load_file("main.kv")
that is found near the bottom of your main.py file. This will fix the issue.