summaryrefslogtreecommitdiffstats
path: root/native/src
diff options
context:
space:
mode:
Diffstat (limited to 'native/src')
-rw-r--r--native/src/widget/checkbox.rs2
-rw-r--r--native/src/widget/radio.rs2
-rw-r--r--native/src/widget/text.rs2
-rw-r--r--native/src/widget/text_input.rs2
4 files changed, 6 insertions, 2 deletions
diff --git a/native/src/widget/checkbox.rs b/native/src/widget/checkbox.rs
index 9251d9a0..9563291c 100644
--- a/native/src/widget/checkbox.rs
+++ b/native/src/widget/checkbox.rs
@@ -24,7 +24,7 @@ use crate::{
/// Checkbox::new(is_checked, "Toggle me!", Message::CheckboxToggled);
/// ```
///
-/// ![Checkbox drawn by Coffee's renderer](https://github.com/hecrj/coffee/blob/bda9818f823dfcb8a7ad0ff4940b4d4b387b5208/images/ui/checkbox.png?raw=true)
+/// ![Checkbox drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/checkbox.png?raw=true)
#[allow(missing_debug_implementations)]
pub struct Checkbox<Message> {
is_checked: bool,
diff --git a/native/src/widget/radio.rs b/native/src/widget/radio.rs
index 04d7fb3c..a9d145db 100644
--- a/native/src/widget/radio.rs
+++ b/native/src/widget/radio.rs
@@ -32,7 +32,7 @@ use std::hash::Hash;
/// Radio::new(Choice::B, "This is B", selected_choice, Message::RadioSelected);
/// ```
///
-/// ![Radio buttons drawn by Coffee's renderer](https://github.com/hecrj/coffee/blob/bda9818f823dfcb8a7ad0ff4940b4d4b387b5208/images/ui/radio.png?raw=true)
+/// ![Radio buttons drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/radio.png?raw=true)
#[allow(missing_debug_implementations)]
pub struct Radio<Message> {
is_selected: bool,
diff --git a/native/src/widget/text.rs b/native/src/widget/text.rs
index 01ffe8fd..cf9c9565 100644
--- a/native/src/widget/text.rs
+++ b/native/src/widget/text.rs
@@ -17,6 +17,8 @@ use std::hash::Hash;
/// .color([0.0, 0.0, 1.0])
/// .size(40);
/// ```
+///
+/// ![Text drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text.png?raw=true)
#[derive(Debug, Clone)]
pub struct Text {
content: String,
diff --git a/native/src/widget/text_input.rs b/native/src/widget/text_input.rs
index 6e0857ae..f97ed424 100644
--- a/native/src/widget/text_input.rs
+++ b/native/src/widget/text_input.rs
@@ -16,6 +16,7 @@ use crate::{
/// ```
/// # use iced_native::{text_input, TextInput};
/// #
+/// #[derive(Debug, Clone)]
/// enum Message {
/// TextInputChanged(String),
/// }
@@ -31,6 +32,7 @@ use crate::{
/// )
/// .padding(10);
/// ```
+/// ![Text input drawn by `iced_wgpu`](https://github.com/hecrj/iced/blob/7760618fb112074bc40b148944521f312152012a/docs/images/text_input.png?raw=true)
#[allow(missing_debug_implementations)]
pub struct TextInput<'a, Message> {
state: &'a mut State,