refactor:renamed anixstream package to fastanime

This commit is contained in:
Benex254
2024-08-05 09:46:56 +03:00
parent fb858e8d04
commit 5c44f2e99c
116 changed files with 0 additions and 0 deletions

View File

View File

@@ -0,0 +1,23 @@
<HomeScreenView>
md_bg_color: self.theme_cls.backgroundColor
main_container:main_container
MDBoxLayout:
NavRail:
screen:root
MDAnchorLayout:
anchor_y: 'top'
padding:"10dp"
MDBoxLayout:
orientation: 'vertical'
id:p
SearchBar:
MDScrollView:
size_hint:1,1
MDBoxLayout:
id:main_container
padding:"50dp","5dp","50dp","150dp"
spacing:"10dp"
orientation: 'vertical'
size_hint_y:None
height:max(self.minimum_height,p.height,1800)

View File

@@ -0,0 +1,7 @@
from kivy.properties import ObjectProperty
from ...View.base_screen import BaseScreenView
class HomeScreenView(BaseScreenView):
main_container = ObjectProperty()