jf-roku/components/tvshows/TVShowDescription.xml

31 lines
1.3 KiB
XML
Raw Normal View History

2019-03-31 03:15:53 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<component name="TVShowDescription" extends="Group">
<children>
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[15]" >
<Poster id="tvshowPoster" width="400" height="600" />
<LayoutGroup layoutDirection="vert" itemSpacings="[25]">
<Label id="title" font="font:LargeBoldSystemFont" />
<LayoutGroup layoutDirection="horiz" itemSpacings="[150]">
<Label id="releaseYear" />
<Label id="officialRating" />
<Label id="communityRating" />
</LayoutGroup>
<Label id="genres" />
<ButtonGroupHoriz id="buttons" itemSpacings="[10]">
<Button text="Play" id="play-button" />
<Button text="Shuffle" id="shuffle-button" />
<Button text="Favorite" id="favorite-button" />
</ButtonGroupHoriz>
<Label id="tagline" />
<Label id="overview" wrap="true" width="900" maxLines="4" />
<Label id="history" />
</LayoutGroup>
</LayoutGroup>
</children>
<interface>
<field id="itemContent" type="node" onChange="itemContentChanged" />
</interface>
2020-03-18 09:10:31 +00:00
<script type="text/brightscript" uri="TVShowDescription.brs" />
<script type="text/brightscript" uri="pkg:/source/utils/misc.brs" />
2019-03-31 03:15:53 +00:00
</component>