mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-07 02:03:49 -08:00
renamed app to anixstream
This commit is contained in:
0
anixstream/View/HomeScreen/__init__.py
Normal file
0
anixstream/View/HomeScreen/__init__.py
Normal file
0
anixstream/View/HomeScreen/components/__init__.py
Normal file
0
anixstream/View/HomeScreen/components/__init__.py
Normal file
23
anixstream/View/HomeScreen/home_screen.kv
Normal file
23
anixstream/View/HomeScreen/home_screen.kv
Normal 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)
|
||||
|
||||
7
anixstream/View/HomeScreen/home_screen.py
Normal file
7
anixstream/View/HomeScreen/home_screen.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from kivy.properties import ObjectProperty
|
||||
|
||||
from View.base_screen import BaseScreenView
|
||||
|
||||
|
||||
class HomeScreenView(BaseScreenView):
|
||||
main_container = ObjectProperty()
|
||||
Reference in New Issue
Block a user