You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
338 B
12 lines
338 B
2 years ago
|
// 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,
|
||
|
}
|