Show checkbox doc example in multiple places

This commit is contained in:
Héctor Ramón Jiménez 2024-09-19 03:03:11 +02:00
parent 5d25562644
commit 51f7ce7324
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
4 changed files with 89 additions and 11 deletions

View file

@ -1,6 +1,6 @@
//! Draw 2D graphics for your users.
//!
//! ## Drawing a simple circle
//! # Example: Drawing a Simple Circle
//! Here's how we can use a [`Canvas`] to draw a simple circle:
//!
//! ```no_run
@ -90,7 +90,7 @@ pub type Frame<Renderer = crate::Renderer> = geometry::Frame<Renderer>;
/// A widget capable of drawing 2D graphics.
///
/// ## Drawing a simple circle
/// # Example: Drawing a Simple Circle
/// Here's how we can use a [`Canvas`] to draw a simple circle:
///
/// ```no_run