Implement theme styling for Checkbox

This commit is contained in:
Héctor Ramón Jiménez 2022-06-04 03:26:53 +02:00
parent 1388d71f03
commit 835877fc63
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
8 changed files with 138 additions and 93 deletions

View file

@ -23,7 +23,7 @@ pub mod button {
pub mod checkbox {
//! Show toggle controls using checkboxes.
pub use iced_pure::widget::checkbox::{Style, StyleSheet};
pub use iced_pure::widget::checkbox::{Appearance, StyleSheet};
/// A box that can be checked.
pub type Checkbox<'a, Message, Theme> =

View file

@ -39,7 +39,7 @@ pub mod button {
pub mod checkbox {
//! Show toggle controls using checkboxes.
pub use iced_native::widget::checkbox::{Style, StyleSheet};
pub use iced_native::widget::checkbox::{Appearance, StyleSheet};
/// A box that can be checked.
pub type Checkbox<'a, Message, Theme> =