mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-15 17:11:19 -08:00
62 lines
2.2 KiB
Plaintext
62 lines
2.2 KiB
Plaintext
<AnimeScreenView>:
|
|
md_bg_color: self.theme_cls.backgroundColor
|
|
header:header
|
|
side_bar:side_bar
|
|
rankings_bar:rankings_bar
|
|
anime_description:anime_description
|
|
anime_characters:anime_characters
|
|
anime_reviews:anime_reviews
|
|
MDBoxLayout:
|
|
orientation: 'vertical'
|
|
MDBoxLayout:
|
|
orientation: 'vertical'
|
|
size_hint_y:None
|
|
height: self.minimum_height
|
|
MDBoxLayout:
|
|
adaptive_height:True
|
|
MDIconButton:
|
|
icon: "arrow-left"
|
|
on_release:
|
|
root.manager_screens.current = root.caller_screen_name
|
|
MDScrollView:
|
|
size_hint:1,1
|
|
MDBoxLayout:
|
|
id:main_container
|
|
size_hint_y:None
|
|
padding:"10dp"
|
|
spacing:"10dp"
|
|
height: self.minimum_height
|
|
orientation:"vertical"
|
|
AnimeHeader:
|
|
id:header
|
|
MDBoxLayout:
|
|
size_hint_y:None
|
|
height: self.minimum_height
|
|
AnimeSideBar:
|
|
id:side_bar
|
|
screen:root
|
|
size_hint_y:None
|
|
height:max(self.parent.height,self.minimum_height)
|
|
|
|
MDBoxLayout:
|
|
spacing:"10dp"
|
|
orientation:"vertical"
|
|
size_hint_y:None
|
|
height: max(self.parent.height,self.minimum_height)
|
|
RankingsBar:
|
|
id:rankings_bar
|
|
Controls:
|
|
screen:root
|
|
cols:3 if root.width < 1100 else 5
|
|
MDBoxLayout:
|
|
adaptive_height:True
|
|
padding:"20dp"
|
|
orientation:"vertical"
|
|
AnimeDescription:
|
|
id:anime_description
|
|
AnimeCharacters:
|
|
id:anime_characters
|
|
AnimeReviews:
|
|
id:anime_reviews
|
|
BoxLayout:
|