Write documentation for the new overlay API
This commit is contained in:
parent
dc0e423142
commit
2118a726f8
16 changed files with 205 additions and 27 deletions
|
|
@ -2,7 +2,7 @@
|
|||
//! for [`iced`].
|
||||
//!
|
||||
//! [`iced`]: https://github.com/hecrj/iced
|
||||
//#![deny(missing_docs)]
|
||||
#![deny(missing_docs)]
|
||||
#![deny(missing_debug_implementations)]
|
||||
#![deny(unused_results)]
|
||||
#![deny(unsafe_code)]
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
//! Display interactive elements on top of other widgets.
|
||||
pub mod menu;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//! Build and show dropdown menus.
|
||||
use crate::backend::{self, Backend};
|
||||
use crate::{Primitive, Renderer};
|
||||
use iced_native::{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//! Display a dropdown list of selectable values.
|
||||
use crate::backend::{self, Backend};
|
||||
use crate::{Primitive, Renderer};
|
||||
use iced_native::{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue