diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/README.md | 4 | ||||
-rw-r--r-- | native/src/lib.rs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/native/README.md b/native/README.md index 31c7db88..849deb58 100644 --- a/native/README.md +++ b/native/README.md @@ -14,7 +14,9 @@ To achieve this, it introduces a bunch of reusable interfaces: - A bunch of `Renderer` traits, meant to keep the crate renderer-agnostic. - A `Windowed` trait, leveraging [`raw-window-handle`], which can be implemented by graphical renderers that target _windows_. Window-based shells (like [`iced_winit`]) can use this trait to stay renderer-agnostic. - +<p align="center"> + <img alt="The native target" src="../docs/graphs/native.png" width="80%"> +</p> [documentation]: https://docs.rs/iced_native [`iced_core`]: ../core diff --git a/native/src/lib.rs b/native/src/lib.rs index ff355aa7..f9a99c48 100644 --- a/native/src/lib.rs +++ b/native/src/lib.rs @@ -1,6 +1,6 @@ //! A renderer-agnostic native GUI runtime. //! -//!  +//!  //! //! `iced_native` takes [`iced_core`] and builds a native runtime on top of it, //! featuring: |