summaryrefslogtreecommitdiffstats
path: root/src/pure
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/pure.rs2
-rw-r--r--src/pure/application.rs5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/pure.rs b/src/pure.rs
index b2b3ade7..1efacdf4 100644
--- a/src/pure.rs
+++ b/src/pure.rs
@@ -95,9 +95,9 @@
//! [the original widgets]: crate::widget
//! [`button::State`]: crate::widget::button::State
//! [impure `Application`]: crate::Application
+pub mod application;
pub mod widget;
-mod application;
mod sandbox;
pub use application::Application;
diff --git a/src/pure/application.rs b/src/pure/application.rs
index 1306ab6c..4a7df13e 100644
--- a/src/pure/application.rs
+++ b/src/pure/application.rs
@@ -1,8 +1,9 @@
use crate::pure::{self, Pure};
-use crate::theme;
use crate::window;
use crate::{Command, Executor, Settings, Subscription};
+pub use iced_native::application::StyleSheet;
+
/// A pure version of [`Application`].
///
/// Unlike the impure version, the `view` method of this trait takes an
@@ -23,7 +24,7 @@ pub trait Application: Sized {
type Message: std::fmt::Debug + Send;
/// The theme of your [`Application`].
- type Theme: Default + theme::Definition;
+ type Theme: Default + StyleSheet;
/// The data needed to initialize your [`Application`].
type Flags;