2022-04-16 20:53:47 +00:00
|
|
|
//! This example shows how to use a custom index.html and custom <HEAD> extensions
|
|
|
|
//! to add things like stylesheets, scripts, and third-party JS libraries.
|
|
|
|
|
2024-01-20 00:36:40 +00:00
|
|
|
use dioxus::desktop::Config;
|
2022-04-16 20:53:47 +00:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
2024-01-19 22:19:49 +00:00
|
|
|
LaunchBuilder::desktop()
|
2024-01-19 00:27:43 +00:00
|
|
|
.with_cfg(
|
2024-01-18 20:32:01 +00:00
|
|
|
Config::new().with_custom_head("<style>body { background-color: red; }</style>".into()),
|
|
|
|
)
|
|
|
|
.launch(app);
|
2022-04-16 20:53:47 +00:00
|
|
|
|
2024-01-19 22:19:49 +00:00
|
|
|
LaunchBuilder::desktop()
|
2024-01-19 00:27:43 +00:00
|
|
|
.with_cfg(
|
2024-01-18 20:32:01 +00:00
|
|
|
Config::new().with_custom_index(
|
|
|
|
r#"
|
2022-04-16 20:53:47 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Dioxus app</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<style>body { background-color: blue; }</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="main"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
"#
|
2024-01-18 20:32:01 +00:00
|
|
|
.into(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.launch(app);
|
2022-04-16 20:53:47 +00:00
|
|
|
}
|
|
|
|
|
2024-01-14 04:51:37 +00:00
|
|
|
fn app() -> Element {
|
2024-01-16 19:18:46 +00:00
|
|
|
rsx! {
|
2024-01-16 14:42:16 +00:00
|
|
|
div { h1 { "hello world!" } }
|
2024-01-14 05:12:21 +00:00
|
|
|
}
|
2022-04-16 20:53:47 +00:00
|
|
|
}
|