Hi, I’m starting to code in fuse.
I’d like to expand the height value of Panel item of scrollview when this item receive a click event.
How can I do this?
<App Theme="Basic">
<StackPanel Orientation="Vertical">
<Text Alignment="TopCenter">TEST</Text>
<ScrollView>
<StackPanel Alignment="Top">
<Panel Width="100%" Height="100" Background="#CCC">
<Text Alignment="Center">CLICK ME #1</Text>
</Panel>
<Panel Width="100%" Height="100" Background="#CC0">
<Text Alignment="Center">CLICK ME #2</Text>
</Panel>
<Panel Width="100%" Height="100" Background="#CCC">
<Text Alignment="Center">CLICK ME #3</Text>
</Panel>
</StackPanel>
</ScrollView>
</StackPanel>
</App>
Example
#2 state after receive a click event
Really thankful
Luis Fernando Kalfels