-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Components Wishlist (from Bubbles) #5
Comments
Spinner added in #13. 🔥 |
I began looking at what would be required for text input.
E.g. match event with
| e ->
(* do other stuff *)
let new_text_input = Text_input.update e in
{ model with text_input = new_text_input } The alternative, if you want match event with
| KeyDown Left ->
let new_text_input = Text_input.character_backward model.text_input in
{ model with text_input = new_text_input }
| ... |
I think you made the right call with taking the |
I'm starting on a paginator component :) |
Forgot to mention this issue in my PR, but Paginator is done for anyone looking at this list. |
I would love to have a "Menu" https://github.com/p-gen/smenu |
Having a nice little library of components to reuse would be amazing, and Bubbles has a nice list that we can just port over:
The text was updated successfully, but these errors were encountered: