mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-17 07:11:50 -08:00
added custom streaming features plus created the rest of the views with basic template
This commit is contained in:
13
app/View/HelpScreen/help_screen.py
Normal file
13
app/View/HelpScreen/help_screen.py
Normal 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.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user