Marquee Text in Fusetools

Hi, I want to add Marquee Text (Moving text) in my project. I tried it with following code:

<App>
    <ScrollView AllowedScrollDirections="Horizontal">
        <Text Value="This is example text of autoscrolling, This is example text of autoscrolling">
            <Translation X="0" ux:Name="_t" RelativeTo="Size" />
            <WhileTrue Value="true">
                <Cycle Target="_t.X" Low="0" High="-0.5" Frequency="0.1" Waveform="Sawtooth" />
            </WhileTrue>
        </Text>
    </ScrollView>
</App>

Text is moving from right to left but repeat text is not showing like Android textView property textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);
How can I show repeat text?

Hey.

In Fuse, there is no ready-made Marquee Text component.

For iOs I can suggest try to integrate this library. You can read how to use the foreign code in Fuse to add your own functionality.

Hope this helps.

Hi,

Thanks. I already checked MarqueeLabel iOS library. I just wanted to know that can this functionality is available in Fuse otherwise I will use it with foreign code.