mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 10:40:00 +08:00
Adding heartbeat to spinner (#548)
Co-authored-by: cyrus <cyruswang2017@gmail.com>
This commit is contained in:
parent
9f9571190a
commit
5410329ac6
@ -17,7 +17,7 @@ int main(int argc, const char* argv[]) {
|
||||
std::string reset_position;
|
||||
for (int index = 0; index < 200; ++index) {
|
||||
std::vector<Element> entries;
|
||||
for (int i = 0; i < 22; ++i) {
|
||||
for (int i = 0; i < 23; ++i) {
|
||||
if (i != 0)
|
||||
entries.push_back(separator());
|
||||
entries.push_back( //
|
||||
|
@ -186,7 +186,8 @@ const std::vector<std::vector<std::vector<std::string>>> elements = {
|
||||
{"[ == ]"},
|
||||
{"[ == ]"},
|
||||
},
|
||||
{{
|
||||
{
|
||||
{
|
||||
" ─╮",
|
||||
" │",
|
||||
" ",
|
||||
@ -225,8 +226,10 @@ const std::vector<std::vector<std::vector<std::string>>> elements = {
|
||||
"╭─╮",
|
||||
" ",
|
||||
" ",
|
||||
}},
|
||||
{{
|
||||
},
|
||||
},
|
||||
{
|
||||
{
|
||||
" /\\O ",
|
||||
" /\\/",
|
||||
" /\\ ",
|
||||
@ -246,7 +249,25 @@ const std::vector<std::vector<std::vector<std::string>>> elements = {
|
||||
" |\\ ",
|
||||
" / | ",
|
||||
" LOLLOL ",
|
||||
}}};
|
||||
},
|
||||
},
|
||||
{
|
||||
{" ", "_______", " "},
|
||||
{" ", "______/", " "},
|
||||
{" _", "_____/ ", " "},
|
||||
{" _ ", "____/ \\", " "},
|
||||
{" _ ", "___/ \\ ", " \\"},
|
||||
{" _ ", "__/ \\ ", " \\_"},
|
||||
{" _ ", "_/ \\ ", " \\_/"},
|
||||
{" _ ", "/ \\ _", " \\_/ "},
|
||||
{"_ ", " \\ __", " \\_/ "},
|
||||
{" ", "\\ ___", " \\_/ "},
|
||||
{" ", " ___", "\\_/ "},
|
||||
{" ", " _____", "_/ "},
|
||||
{" ", " ______", "/ "},
|
||||
{" ", "_______", " "},
|
||||
},
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user