// Created by Bomsamdi on 2022 // Copyright © 2022 Bomsamdi. All rights reserved. /// Animation types for [AutoScrollText] widget. /// [endless] - scrolls text in one direction endlessly. /// [bouncing] - when text is scrolled to its end, /// starts animation to opposite direction. enum AutoScrollTextMode { bouncing, endless, }