Marquee text character from left to write
I have big text which I need to scroll left to right in loop with touch gfx. When I read more on it and found about scrollableContainer but kinda unsure how to combine it with my text object widget.
I added below code
scrollableTripAdviceParameterText_II.setPosition(509, 353, 282, 57);
scrollableTripAdviceParameterText_II.enableHorizontalScroll(true);
scrollableTripAdviceParameterText_II.setScrollbarsColor(touchgfx::Color::getColorFrom24BitRGB(240, 235, 235));
// below code is added by me
scrollableTripAdviceParameterText_II.add(tripAdviceParameterText_II);
scrollableTripAdviceParameterText_II is Scrollable Container widget and tripAdviceParameterText_II is text widget
Is there any other way to add Scrollable Container for my application? I read few blogs on it but unable to figure it out.
Thanks
