diff options
author | 2019-07-22 20:14:23 +0200 | |
---|---|---|
committer | 2019-07-22 20:14:23 +0200 | |
commit | ccb87b12da9f4c8e65571d31da2952ff1b5b08d9 (patch) | |
tree | 098ad52c5da98bc76e30f7ab7d0dd391e8ae581d /examples/ggez/widget.rs | |
parent | b4eb0df5a0067d663d09b418246d25a378b29444 (diff) | |
download | iced-ccb87b12da9f4c8e65571d31da2952ff1b5b08d9.tar.gz iced-ccb87b12da9f4c8e65571d31da2952ff1b5b08d9.tar.bz2 iced-ccb87b12da9f4c8e65571d31da2952ff1b5b08d9.zip |
Implement `button::Renderer` in `ggez` example
Diffstat (limited to '')
-rw-r--r-- | examples/ggez/widget.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/ggez/widget.rs b/examples/ggez/widget.rs index a9e0a7ba..657a3190 100644 --- a/examples/ggez/widget.rs +++ b/examples/ggez/widget.rs @@ -1,3 +1,5 @@ use ggez::graphics::Color; +pub use iced::{button, Button, Column, Row}; + pub type Text = iced::Text<Color>; |