telerik - NativeScript slider not showing value -
my xml here
<slider value="2" minvalue="1" maxvalue="10" />
and print screen, why doesn't showing min value @ beginning , max @ ending user sliding value.
simply because android slider not display min/max values, can seen in documentation.
you may create layout below achieve this.
<stacklayout orientation="horizontal"> <label text="1" /> <slider value="2" minvalue="1" maxvalue="10" /> <label text="10" /> </stacklayout>
Comments
Post a Comment