r3bl_tui 0.7.7

TUI library to build modern apps inspired by React, Elm, with Flexbox, CSS, editor component, emoji support, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2024-2025 R3BL LLC. Licensed under Apache License, Version 2.0.

use std::time::Duration;

pub const DELAY_MS: u64 = 85;
pub const DELAY_UNIT: Duration = Duration::from_millis(DELAY_MS);
pub const ARTIFICIAL_UI_DELAY: Duration = Duration::from_millis(DELAY_MS * 25);

/// More info: <https://www.unicode.org/charts/script/chart_Braille.html>
pub const BRAILLE_DOTS: [&str; 34] = [
    "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
    "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
];

pub const BLOCK_DOTS: [&str; 8] = ["", "", "", "", "", "", "", ""];