diff options
author | 2023-03-05 06:23:40 +0100 | |
---|---|---|
committer | 2023-03-05 06:23:40 +0100 | |
commit | 8af69be47e88896b3c5f70174db609eee0c67971 (patch) | |
tree | bf9b04335def215c2c3bacda2afe4c2125346dc8 /native/src/widget.rs | |
parent | 43414bbdfb080b7aa3c702d944cc9d0c9c0fd14b (diff) | |
download | iced-8af69be47e88896b3c5f70174db609eee0c67971.tar.gz iced-8af69be47e88896b3c5f70174db609eee0c67971.tar.bz2 iced-8af69be47e88896b3c5f70174db609eee0c67971.zip |
Converge `Command` types from `iced_futures` and `iced_native`
Diffstat (limited to '')
-rw-r--r-- | native/src/widget.rs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs deleted file mode 100644 index 0fdade54..00000000 --- a/native/src/widget.rs +++ /dev/null @@ -1,16 +0,0 @@ -//! Use the built-in widgets or create your own. -//! -//! # Built-in widgets -//! Every built-in drawable widget has its own module with a `Renderer` trait -//! that must be implemented by a [renderer] before being able to use it as -//! a [`Widget`]. -//! -//! # Custom widgets -//! If you want to implement a custom widget, you simply need to implement the -//! [`Widget`] trait. You can use the API of the built-in widgets as a guide or -//! source of inspiration. -//! -//! [renderer]: crate::renderer -mod action; - -pub use action::Action; |