mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-30 14:40:39 -08:00
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
#:import get_hex_from_color kivy.utils.get_hex_from_color
|
|
|
|
|
|
<ReviewContainer@MDBoxLayout>:
|
|
adaptive_height:True
|
|
md_bg_color:self.theme_cls.surfaceContainerLowColor
|
|
padding:"10dp"
|
|
orientation:"vertical"
|
|
|
|
<ReviewText@MDLabel>:
|
|
adaptive_height:True
|
|
max_lines:0
|
|
shorten:False
|
|
markup:True
|
|
font_style: "Body"
|
|
role: "small"
|
|
|
|
<ReviewHeader@MDBoxLayout>:
|
|
adaptive_height:True
|
|
spacing:"10dp"
|
|
padding:"10dp"
|
|
|
|
<ReviewerAvatar@FitImage>
|
|
radius:50
|
|
size_hint:None,None
|
|
height:"50dp"
|
|
width:"50dp"
|
|
|
|
<AnimeReview>
|
|
orientation:"vertical"
|
|
adaptive_height:True
|
|
ReviewHeader:
|
|
ReviewerAvatar:
|
|
source:root.review["avatar"]
|
|
ReviewText:
|
|
pos_hint: {'center_y': 0.5}
|
|
text:root.review["username"]
|
|
MDDivider:
|
|
ReviewText:
|
|
text:root.review["summary"]
|
|
MDDivider:
|
|
<AnimeReviews>:
|
|
container:container
|
|
adaptive_height:True
|
|
orientation:"vertical"
|
|
HeaderLabel:
|
|
halign:"left"
|
|
text:"reviews"
|
|
ReviewContainer:
|
|
id:container |