init tui
This commit is contained in:
@@ -19,3 +19,6 @@ tracing-appender = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
hex = { workspace = true }
|
||||
image = { workspace = true }
|
||||
mlua = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
|
||||
1089
crates/xserial-tui/src/app.rs
Normal file
1089
crates/xserial-tui/src/app.rs
Normal file
File diff suppressed because it is too large
Load Diff
103
crates/xserial-tui/src/app_state.rs
Normal file
103
crates/xserial-tui/src/app_state.rs
Normal file
@@ -0,0 +1,103 @@
|
||||
use std::env;
|
||||
use std::fs;
|
||||
use std::io;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use tracing::warn;
|
||||
use xserial_client::SessionConfig;
|
||||
|
||||
const TUI_STATE_FILE_NAME: &str = "tui-state.json";
|
||||
|
||||
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
|
||||
pub struct PersistedTuiState {
|
||||
#[serde(default)]
|
||||
pub sessions: Vec<SessionConfig>,
|
||||
#[serde(default)]
|
||||
pub active: usize,
|
||||
#[serde(default = "default_true")]
|
||||
pub show_timestamp: bool,
|
||||
#[serde(default = "default_true")]
|
||||
pub show_direction: bool,
|
||||
#[serde(default = "default_true")]
|
||||
pub show_pipeline: bool,
|
||||
}
|
||||
|
||||
pub fn load_tui_state() -> PersistedTuiState {
|
||||
match load_tui_state_from_path(&tui_state_path()) {
|
||||
Ok(state) => state,
|
||||
Err(err) if err.kind() == io::ErrorKind::NotFound => PersistedTuiState::default(),
|
||||
Err(err) => {
|
||||
warn!(error = %err, "Failed to load persisted TUI state");
|
||||
PersistedTuiState::default()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn save_tui_state(state: &PersistedTuiState) {
|
||||
if let Err(err) = save_tui_state_to_path(state, &tui_state_path()) {
|
||||
warn!(error = %err, "Failed to persist TUI state");
|
||||
}
|
||||
}
|
||||
|
||||
fn tui_state_path() -> PathBuf {
|
||||
state_path_for_os_and_env(env::consts::OS, |key| env::var(key).ok())
|
||||
}
|
||||
|
||||
fn state_path_for_os_and_env(os: &str, get_env: impl Fn(&str) -> Option<String>) -> PathBuf {
|
||||
match os {
|
||||
"windows" => {
|
||||
if let Some(path) = get_env("APPDATA").filter(|path| !path.trim().is_empty()) {
|
||||
return PathBuf::from(path)
|
||||
.join("xserial")
|
||||
.join(TUI_STATE_FILE_NAME);
|
||||
}
|
||||
if let Some(path) = get_env("LOCALAPPDATA").filter(|path| !path.trim().is_empty()) {
|
||||
return PathBuf::from(path)
|
||||
.join("xserial")
|
||||
.join(TUI_STATE_FILE_NAME);
|
||||
}
|
||||
}
|
||||
"macos" => {
|
||||
if let Some(home) = get_env("HOME").filter(|path| !path.trim().is_empty()) {
|
||||
return PathBuf::from(home)
|
||||
.join("Library")
|
||||
.join("Application Support")
|
||||
.join("xserial")
|
||||
.join(TUI_STATE_FILE_NAME);
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
if let Some(path) = get_env("XDG_CONFIG_HOME").filter(|path| !path.trim().is_empty()) {
|
||||
return PathBuf::from(path)
|
||||
.join("xserial")
|
||||
.join(TUI_STATE_FILE_NAME);
|
||||
}
|
||||
if let Some(home) = get_env("HOME").filter(|path| !path.trim().is_empty()) {
|
||||
return PathBuf::from(home)
|
||||
.join(".config")
|
||||
.join("xserial")
|
||||
.join(TUI_STATE_FILE_NAME);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
PathBuf::from(TUI_STATE_FILE_NAME)
|
||||
}
|
||||
|
||||
fn load_tui_state_from_path(path: &Path) -> io::Result<PersistedTuiState> {
|
||||
let text = fs::read_to_string(path)?;
|
||||
serde_json::from_str(&text).map_err(io::Error::other)
|
||||
}
|
||||
|
||||
fn save_tui_state_to_path(state: &PersistedTuiState, path: &Path) -> io::Result<()> {
|
||||
if let Some(parent) = path.parent() {
|
||||
fs::create_dir_all(parent)?;
|
||||
}
|
||||
let json = serde_json::to_string_pretty(state).map_err(io::Error::other)?;
|
||||
fs::write(path, json)
|
||||
}
|
||||
|
||||
const fn default_true() -> bool {
|
||||
true
|
||||
}
|
||||
146
crates/xserial-tui/src/buffers.rs
Normal file
146
crates/xserial-tui/src/buffers.rs
Normal file
@@ -0,0 +1,146 @@
|
||||
use std::time::{Duration, Instant};
|
||||
|
||||
use xserial_client::{DecodedEntry, RingBuffer};
|
||||
use xserial_core::protocol::DecodedData;
|
||||
|
||||
#[derive(Clone, Copy, PartialEq, Eq)]
|
||||
pub enum LineDirection {
|
||||
In,
|
||||
Out,
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct ConsoleLine {
|
||||
pub elapsed: Duration,
|
||||
pub pipeline: String,
|
||||
pub text: String,
|
||||
pub direction: LineDirection,
|
||||
}
|
||||
|
||||
pub struct TextBuffer {
|
||||
started_at: Instant,
|
||||
lines: RingBuffer<ConsoleLine>,
|
||||
}
|
||||
|
||||
impl TextBuffer {
|
||||
pub fn new(limit: usize) -> Self {
|
||||
Self {
|
||||
started_at: Instant::now(),
|
||||
lines: RingBuffer::new(limit),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push(&mut self, entry: &DecodedEntry) {
|
||||
if let DecodedData::Text(text) = &entry.data {
|
||||
self.lines.push(ConsoleLine {
|
||||
elapsed: self.started_at.elapsed(),
|
||||
pipeline: entry.pipeline_name.clone(),
|
||||
text: text.clone(),
|
||||
direction: LineDirection::In,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_outbound(&mut self, text: String) {
|
||||
self.lines.push(ConsoleLine {
|
||||
elapsed: self.started_at.elapsed(),
|
||||
pipeline: String::from("OUT"),
|
||||
text,
|
||||
direction: LineDirection::Out,
|
||||
});
|
||||
}
|
||||
|
||||
pub fn len(&self) -> usize {
|
||||
self.lines.len()
|
||||
}
|
||||
|
||||
pub fn clear(&mut self) {
|
||||
self.lines.clear();
|
||||
}
|
||||
|
||||
pub fn set_limit(&mut self, limit: usize) {
|
||||
self.lines.set_limit(limit);
|
||||
}
|
||||
|
||||
pub fn recent(&self, count: usize) -> Vec<ConsoleLine> {
|
||||
self.lines.drain_recent(count)
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct HexLine {
|
||||
pub elapsed: Duration,
|
||||
pub pipeline: String,
|
||||
pub hex: String,
|
||||
pub ascii: String,
|
||||
pub direction: LineDirection,
|
||||
}
|
||||
|
||||
pub struct HexBuffer {
|
||||
started_at: Instant,
|
||||
lines: RingBuffer<HexLine>,
|
||||
}
|
||||
|
||||
impl HexBuffer {
|
||||
pub fn new(limit: usize) -> Self {
|
||||
Self {
|
||||
started_at: Instant::now(),
|
||||
lines: RingBuffer::new(limit),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push(&mut self, entry: &DecodedEntry) {
|
||||
if let DecodedData::Hex(hex) = &entry.data {
|
||||
self.lines.push(HexLine {
|
||||
elapsed: self.started_at.elapsed(),
|
||||
pipeline: entry.pipeline_name.clone(),
|
||||
ascii: decode_ascii(hex),
|
||||
hex: hex.clone(),
|
||||
direction: LineDirection::In,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
pub fn push_outbound(&mut self, hex: String) {
|
||||
self.lines.push(HexLine {
|
||||
elapsed: self.started_at.elapsed(),
|
||||
pipeline: String::from("OUT"),
|
||||
ascii: decode_ascii(&hex),
|
||||
hex,
|
||||
direction: LineDirection::Out,
|
||||
});
|
||||
}
|
||||
|
||||
pub fn len(&self) -> usize {
|
||||
self.lines.len()
|
||||
}
|
||||
|
||||
pub fn clear(&mut self) {
|
||||
self.lines.clear();
|
||||
}
|
||||
|
||||
pub fn set_limit(&mut self, limit: usize) {
|
||||
self.lines.set_limit(limit);
|
||||
}
|
||||
|
||||
pub fn recent(&self, count: usize) -> Vec<HexLine> {
|
||||
self.lines.drain_recent(count)
|
||||
}
|
||||
}
|
||||
|
||||
fn decode_ascii(hex: &str) -> String {
|
||||
hex::decode(hex.replace(' ', ""))
|
||||
.map(|bytes| {
|
||||
bytes
|
||||
.into_iter()
|
||||
.map(|byte| {
|
||||
if byte.is_ascii_graphic() || byte == b' ' {
|
||||
byte as char
|
||||
} else {
|
||||
'.'
|
||||
}
|
||||
})
|
||||
.collect()
|
||||
})
|
||||
.unwrap_or_else(|_| String::from("[invalid hex]"))
|
||||
}
|
||||
@@ -1 +1,38 @@
|
||||
fn main() {}
|
||||
mod app;
|
||||
mod app_state;
|
||||
mod buffers;
|
||||
mod ui;
|
||||
|
||||
use std::io;
|
||||
|
||||
use crossterm::{
|
||||
execute,
|
||||
terminal::{EnterAlternateScreen, LeaveAlternateScreen, disable_raw_mode, enable_raw_mode},
|
||||
};
|
||||
use ratatui::{Terminal, backend::CrosstermBackend};
|
||||
use xserial_client::SessionManager;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() -> io::Result<()> {
|
||||
tracing_subscriber::fmt()
|
||||
.with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
|
||||
.init();
|
||||
|
||||
enable_raw_mode()?;
|
||||
let mut stdout = io::stdout();
|
||||
execute!(stdout, EnterAlternateScreen)?;
|
||||
|
||||
let backend = CrosstermBackend::new(stdout);
|
||||
let mut terminal = Terminal::new(backend)?;
|
||||
|
||||
let manager = SessionManager::new();
|
||||
let rx = manager.subscribe();
|
||||
|
||||
let result = app::run(&mut terminal, app::App::new(manager, rx));
|
||||
|
||||
disable_raw_mode()?;
|
||||
execute!(terminal.backend_mut(), LeaveAlternateScreen)?;
|
||||
terminal.show_cursor()?;
|
||||
|
||||
result
|
||||
}
|
||||
|
||||
335
crates/xserial-tui/src/ui.rs
Normal file
335
crates/xserial-tui/src/ui.rs
Normal file
@@ -0,0 +1,335 @@
|
||||
use ratatui::{
|
||||
Frame,
|
||||
layout::{Constraint, Direction, Layout, Rect},
|
||||
style::{Modifier, Style},
|
||||
widgets::{Block, Borders, Clear, List, ListItem, Paragraph, Wrap},
|
||||
};
|
||||
|
||||
use crate::app::{App, AppMode, ConnectionStatus, DisplayOptions, SendMode, SessionForm, View};
|
||||
use crate::buffers::{ConsoleLine, HexLine, LineDirection};
|
||||
|
||||
const MAX_RENDER_LINES: usize = 400;
|
||||
|
||||
pub fn render(frame: &mut Frame, app: &App) {
|
||||
let root = Layout::default()
|
||||
.direction(Direction::Horizontal)
|
||||
.constraints([Constraint::Length(34), Constraint::Min(20)])
|
||||
.split(frame.area());
|
||||
|
||||
render_sidebar(frame, app, root[0]);
|
||||
render_main(frame, app, root[1]);
|
||||
|
||||
if let AppMode::SessionForm(form) = app.mode() {
|
||||
render_session_form(frame, form);
|
||||
}
|
||||
}
|
||||
|
||||
fn render_sidebar(frame: &mut Frame, app: &App, area: Rect) {
|
||||
let items: Vec<ListItem> = app
|
||||
.tabs()
|
||||
.iter()
|
||||
.enumerate()
|
||||
.map(|(index, tab)| {
|
||||
let prefix = if index == app.active_index() {
|
||||
"> "
|
||||
} else {
|
||||
" "
|
||||
};
|
||||
let transport = App::transport_summary(&tab.session_config);
|
||||
ListItem::new(format!(
|
||||
"{prefix}[{}] {}\n {}",
|
||||
tab.id,
|
||||
tab.status.badge(),
|
||||
transport
|
||||
))
|
||||
})
|
||||
.collect();
|
||||
|
||||
let sidebar = if items.is_empty() {
|
||||
Paragraph::new("No sessions.\nPress n to create one.")
|
||||
.block(Block::default().borders(Borders::ALL).title("Sessions"))
|
||||
.wrap(Wrap { trim: false })
|
||||
} else {
|
||||
Paragraph::new("").block(Block::default().borders(Borders::ALL).title("Sessions"))
|
||||
};
|
||||
|
||||
frame.render_widget(sidebar, area);
|
||||
if !items.is_empty() {
|
||||
frame.render_widget(
|
||||
List::new(items).block(Block::default().borders(Borders::ALL).title("Sessions")),
|
||||
area,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
fn render_main(frame: &mut Frame, app: &App, area: Rect) {
|
||||
let sections = Layout::default()
|
||||
.direction(Direction::Vertical)
|
||||
.constraints([
|
||||
Constraint::Length(4),
|
||||
Constraint::Min(8),
|
||||
Constraint::Length(7),
|
||||
Constraint::Length(3),
|
||||
])
|
||||
.split(area);
|
||||
|
||||
if let Some(tab) = app.active_tab() {
|
||||
render_header(frame, app, sections[0]);
|
||||
render_receive(frame, app, sections[1]);
|
||||
render_send(frame, app, sections[2]);
|
||||
let footer = format!(
|
||||
"{}{}",
|
||||
app.help_text(),
|
||||
app.notice()
|
||||
.map(|notice| format!(" | {notice}"))
|
||||
.unwrap_or_default()
|
||||
);
|
||||
frame.render_widget(
|
||||
Paragraph::new(footer)
|
||||
.block(Block::default().borders(Borders::ALL).title("Help"))
|
||||
.wrap(Wrap { trim: false }),
|
||||
sections[3],
|
||||
);
|
||||
|
||||
if matches!(tab.status, ConnectionStatus::Error(_)) {
|
||||
if let ConnectionStatus::Error(message) = &tab.status {
|
||||
let _ = message;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
frame.render_widget(
|
||||
Paragraph::new(format!(
|
||||
"No active session.\n{}\n{}",
|
||||
app.help_text(),
|
||||
app.notice().unwrap_or("")
|
||||
))
|
||||
.block(Block::default().borders(Borders::ALL).title("xserial-tui"))
|
||||
.wrap(Wrap { trim: false }),
|
||||
area,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
fn render_header(frame: &mut Frame, app: &App, area: Rect) {
|
||||
let tab = app.active_tab().expect("active tab");
|
||||
let display = app.display();
|
||||
let status_line = match &tab.status {
|
||||
ConnectionStatus::Error(message) => {
|
||||
format!("Session {} [{}] {}", tab.id, tab.status.badge(), message)
|
||||
}
|
||||
_ => format!("Session {} [{}]", tab.id, tab.status.badge()),
|
||||
};
|
||||
let line2 = format!(
|
||||
"{} | View: {} | Send: {} | AutoReconnect: {} | AppendNewline: {}",
|
||||
App::transport_summary(&tab.session_config),
|
||||
match tab.view {
|
||||
View::Text => "Text",
|
||||
View::Hex => "Hex",
|
||||
},
|
||||
match tab.send_mode {
|
||||
SendMode::Text => "Text",
|
||||
SendMode::Hex => "Hex",
|
||||
},
|
||||
tab.auto_reconnect,
|
||||
tab.append_newline
|
||||
);
|
||||
let line3 = format!(
|
||||
"Display: ts={} dir={} pipe={} | Text lines={} Hex lines={}",
|
||||
display.show_timestamp,
|
||||
display.show_direction,
|
||||
display.show_pipeline,
|
||||
tab.console.len(),
|
||||
tab.hex.len()
|
||||
);
|
||||
frame.render_widget(
|
||||
Paragraph::new(format!("{status_line}\n{line2}\n{line3}"))
|
||||
.block(Block::default().borders(Borders::ALL).title("Session"))
|
||||
.wrap(Wrap { trim: false }),
|
||||
area,
|
||||
);
|
||||
}
|
||||
|
||||
fn render_receive(frame: &mut Frame, app: &App, area: Rect) {
|
||||
let tab = app.active_tab().expect("active tab");
|
||||
let display = app.display();
|
||||
let title = match tab.view {
|
||||
View::Text => "Receive Text",
|
||||
View::Hex => "Receive Hex",
|
||||
};
|
||||
|
||||
let lines: Vec<String> = match tab.view {
|
||||
View::Text => tab
|
||||
.console
|
||||
.recent(MAX_RENDER_LINES)
|
||||
.into_iter()
|
||||
.map(|line| format_console_line(&line, display))
|
||||
.collect(),
|
||||
View::Hex => tab
|
||||
.hex
|
||||
.recent(MAX_RENDER_LINES)
|
||||
.into_iter()
|
||||
.map(|line| format_hex_line(&line, display))
|
||||
.collect(),
|
||||
};
|
||||
|
||||
let body = if lines.is_empty() {
|
||||
String::from("no data")
|
||||
} else {
|
||||
lines.join("\n")
|
||||
};
|
||||
|
||||
frame.render_widget(
|
||||
Paragraph::new(body)
|
||||
.block(Block::default().borders(Borders::ALL).title(title))
|
||||
.wrap(Wrap { trim: false }),
|
||||
area,
|
||||
);
|
||||
}
|
||||
|
||||
fn render_send(frame: &mut Frame, app: &App, area: Rect) {
|
||||
let tab = app.active_tab().expect("active tab");
|
||||
let editing = matches!(app.mode(), AppMode::SendInput);
|
||||
let title = if editing { "Send [editing]" } else { "Send" };
|
||||
let status = tab.send_status.as_deref().unwrap_or("idle");
|
||||
let hint = match tab.send_mode {
|
||||
SendMode::Text => "Press i to edit input, Enter to send while editing",
|
||||
SendMode::Hex => "Hex bytes, e.g. 48 65 6C 6C 6F",
|
||||
};
|
||||
let body = format!(
|
||||
"Mode: {} | Append newline: {}\nStatus: {}\nHint: {}\n\n{}",
|
||||
match tab.send_mode {
|
||||
SendMode::Text => "Text",
|
||||
SendMode::Hex => "Hex",
|
||||
},
|
||||
tab.append_newline,
|
||||
status,
|
||||
hint,
|
||||
if tab.send_input.is_empty() {
|
||||
String::from("<empty>")
|
||||
} else {
|
||||
tab.send_input.clone()
|
||||
}
|
||||
);
|
||||
|
||||
frame.render_widget(
|
||||
Paragraph::new(body)
|
||||
.block(Block::default().borders(Borders::ALL).title(title))
|
||||
.wrap(Wrap { trim: false }),
|
||||
area,
|
||||
);
|
||||
}
|
||||
|
||||
fn render_session_form(frame: &mut Frame, form: &SessionForm) {
|
||||
let rows = form.rows();
|
||||
let footer_lines = form.footer_lines();
|
||||
let height = (rows.len() + footer_lines.len() + 4) as u16;
|
||||
let area = centered_rect(82, height, frame.area());
|
||||
let inner = Layout::default()
|
||||
.direction(Direction::Vertical)
|
||||
.constraints([
|
||||
Constraint::Min(1),
|
||||
Constraint::Length(footer_lines.len() as u16),
|
||||
])
|
||||
.margin(1)
|
||||
.split(area);
|
||||
|
||||
let items: Vec<ListItem> = rows
|
||||
.into_iter()
|
||||
.enumerate()
|
||||
.map(|(idx, row)| ListItem::new(row).style(focus_style(idx == form.focused_field)))
|
||||
.collect();
|
||||
|
||||
frame.render_widget(Clear, area);
|
||||
frame.render_widget(
|
||||
Block::default().borders(Borders::ALL).title(form.title()),
|
||||
area,
|
||||
);
|
||||
frame.render_widget(List::new(items), inner[0]);
|
||||
frame.render_widget(Paragraph::new(footer_lines.join("\n")), inner[1]);
|
||||
}
|
||||
|
||||
fn format_console_line(line: &ConsoleLine, display: DisplayOptions) -> String {
|
||||
let mut prefix = Vec::new();
|
||||
if display.show_timestamp {
|
||||
prefix.push(format!("[{}]", format_elapsed(line.elapsed)));
|
||||
}
|
||||
if display.show_direction {
|
||||
prefix.push(format!(
|
||||
"[{}]",
|
||||
match line.direction {
|
||||
LineDirection::In => "IN",
|
||||
LineDirection::Out => "OUT",
|
||||
}
|
||||
));
|
||||
}
|
||||
if display.show_pipeline {
|
||||
prefix.push(format!("[{}]", line.pipeline));
|
||||
}
|
||||
if prefix.is_empty() {
|
||||
line.text.clone()
|
||||
} else {
|
||||
format!("{} {}", prefix.join(" "), line.text)
|
||||
}
|
||||
}
|
||||
|
||||
fn format_hex_line(line: &HexLine, display: DisplayOptions) -> String {
|
||||
let mut prefix = Vec::new();
|
||||
if display.show_timestamp {
|
||||
prefix.push(format!("[{}]", format_elapsed(line.elapsed)));
|
||||
}
|
||||
if display.show_direction {
|
||||
prefix.push(format!(
|
||||
"[{}]",
|
||||
match line.direction {
|
||||
LineDirection::In => "IN",
|
||||
LineDirection::Out => "OUT",
|
||||
}
|
||||
));
|
||||
}
|
||||
if display.show_pipeline {
|
||||
prefix.push(format!("[{}]", line.pipeline));
|
||||
}
|
||||
let base = format!("{} |{}|", line.hex, line.ascii);
|
||||
if prefix.is_empty() {
|
||||
base
|
||||
} else {
|
||||
format!("{} {}", prefix.join(" "), base)
|
||||
}
|
||||
}
|
||||
|
||||
fn format_elapsed(elapsed: std::time::Duration) -> String {
|
||||
let secs = elapsed.as_secs_f64();
|
||||
if secs < 60.0 {
|
||||
format!("{secs:05.2}")
|
||||
} else {
|
||||
format!("{:02}:{:02}", (secs / 60.0) as u64, (secs % 60.0) as u64)
|
||||
}
|
||||
}
|
||||
|
||||
fn focus_style(focused: bool) -> Style {
|
||||
if focused {
|
||||
Style::default().add_modifier(Modifier::REVERSED | Modifier::BOLD)
|
||||
} else {
|
||||
Style::default()
|
||||
}
|
||||
}
|
||||
|
||||
fn centered_rect(width: u16, height: u16, area: Rect) -> Rect {
|
||||
let vertical = Layout::default()
|
||||
.direction(Direction::Vertical)
|
||||
.constraints([
|
||||
Constraint::Fill(1),
|
||||
Constraint::Length(height.min(area.height)),
|
||||
Constraint::Fill(1),
|
||||
])
|
||||
.split(area);
|
||||
|
||||
Layout::default()
|
||||
.direction(Direction::Horizontal)
|
||||
.constraints([
|
||||
Constraint::Fill(1),
|
||||
Constraint::Length(width.min(area.width)),
|
||||
Constraint::Fill(1),
|
||||
])
|
||||
.split(vertical[1])[1]
|
||||
}
|
||||
Reference in New Issue
Block a user