added custom streaming features plus created the rest of the views with basic template

This commit is contained in:
Benedict Xavier Wanyonyi
2024-05-23 19:05:56 +03:00
parent 021aa20443
commit f2e7c1df15
36 changed files with 459 additions and 36 deletions

View File

@@ -0,0 +1,13 @@
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.
"""