Show HN: Intuitive – A Rust crate for writing declarative TUIs
1–6 of 6 posts
Re: Show HN: Intuitive – A Rust crate for writing declarative TUIs
#2Right now it's in between a proof-of-concept and an alpha version of the crate. I'm in the process of re-writing one of my TUI apps using Intuitive, and so far it has proven itself as a way to greatly reduce the amount of code necessary for a TUI.
I would be grateful for any feedback on the idea, the design, and/or the implementation. I hope it's well-received!
Re: Show HN: Intuitive – A Rust crate for writing declarative TUIs
#3I've written a few TUIs in Rust, and the amount of code needed for the UI components always felt excessive. For a while, I had been toying with the idea of being able to write components in a SwiftUI-like DSL and have state managed like React does with hooks. Intuitive is the result of that frustration and desire. Right now it's in between a proof-of-concept and an alpha version of the crate. I'm in the process of re…
Re: Show HN: Intuitive – A Rust crate for writing declarative TUIs
#4I've written a few TUIs in Rust, and the amount of code needed for the UI components always felt excessive. For a while, I had been toying with the idea of being able to write components in a SwiftUI-like DSL and have state managed like React does with hooks. Intuitive is the result of that frustration and desire. Right now it's in between a proof-of-concept and an alpha version of the crate. I'm in the process of re…
Wow, this looks cool! How is use_state() implemented?
Re: Show HN: Intuitive – A Rust crate for writing declarative TUIs
#5Re: Show HN: Intuitive – A Rust crate for writing declarative TUIs
#6Looks great. Most the TUI stuff out there Ive seen rarely has a great solve for scrolling (buffered) text boxes. Would be cool to see a clean scroll box solution here