feat(widget): Add spin_button widget

Co-authored-by: Michael Aaron Murphy <michael@mmurphy.dev>
This commit is contained in:
Eduardo Flores 2022-12-06 16:17:34 -07:00 committed by GitHub
parent f283ab897f
commit 200784b6c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 130 additions and 5 deletions

View file

@ -19,6 +19,9 @@ pub use self::nav_button::{NavButton, nav_button};
pub mod navigation;
pub use navigation::*;
pub mod popup;
pub use popup::*;
mod toggler;
pub use toggler::toggler;
@ -28,7 +31,7 @@ mod scrollable;
pub use scrollable::*;
pub mod separator;
pub mod popup;
pub use popup::*;
pub use separator::{horizontal_rule, vertical_rule};
pub mod spin_button;
pub use spin_button::{SpinButton, spin_button};