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.
11 lines
338 B
11 lines
338 B
// 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, |
|
}
|
|
|