completed the basic ui and anilist module

This commit is contained in:
Benedict Xavier Wanyonyi
2024-05-15 20:33:20 +03:00
commit ffe5db9e33
44 changed files with 3775 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
from kivy.properties import ObjectProperty
from View.base_screen import BaseScreenView
class MainScreenView(BaseScreenView):
main_container = ObjectProperty()
def write_data(self):
self.controller.write_data()
def model_is_changed(self) -> None:
"""
Called whenever any change has occurred in the data model.
The view in this method tracks these changes and updates the UI
according to these changes.
"""