Block layout now playing #14
Owner
```rust
let chunks = Layout::default()
.direction(Direction::Horizontal)
.constraints([Constraint::Percentage(50), Constraint::Percentage(50)])
.split(outer_rect);
let inner_rect1 = chunks[0].inner(&Margin {vertical: 1, horizontal: 1});
let inner_rect2 = chunks[1].inner(&Margin {vertical: 1, horizontal: 1});
f.render_widget(Block::default(), outer_rect);
f.render_widget(Block::default(), inner_rect1);
f.render_widget(Block::default(), inner_rect2);
```
Labels
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: clusterfuck/crabidy#14
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?