mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-28 13:43:28 -08:00
14 lines
439 B
Python
14 lines
439 B
Python
from kivy.properties import ObjectProperty
|
|
from View.base_screen import BaseScreenView
|
|
|
|
|
|
class CrashLogScreenView(BaseScreenView):
|
|
"""The crash log screen"""
|
|
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.
|
|
"""
|