cursive-cached-text-view 0.1.0

An implementation of Cursive's TextView that caches the rows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# cursive-cached-text-view

A drop-in replacement for `TextView` with row cache. With complex layouts and thousands of rows, 
this can improve performance significantly.

### Example

```rust
use cursive_cached_text_view::CachedTextView;

fn main() {
    let mut view = CachedTextView::new("sample", 5);
    // the rest is the same as TextView
}
```