Files
FastAnime/app/View/HelpScreen/help_screen.py

13 lines
408 B
Python

from kivy.properties import ObjectProperty
from View.base_screen import BaseScreenView
class HelpScreenView(BaseScreenView):
main_container = ObjectProperty()
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.
"""