mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-28 21:53:20 -08:00
11 lines
200 B
Python
11 lines
200 B
Python
from kivy.properties import ObjectProperty
|
|
|
|
from ...View.base_screen import BaseScreenView
|
|
|
|
|
|
class HomeScreenView(BaseScreenView):
|
|
main_container = ObjectProperty()
|
|
|
|
|
|
__all__ = ["HomeScreenView"]
|