dioxus/examples/custom_html.rs

35 lines
761 B
Rust
Raw Normal View History

//! 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.
use dioxus::prelude::*;
fn main() {
LaunchBuilder::new()
.with_cfg(
2024-02-14 20:33:07 +00:00
dioxus::desktop::Config::new().with_custom_index(
2024-01-18 20:32:01 +00:00
r#"
<!DOCTYPE html>
<html>
<head>
<title>Dioxus app</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-02-14 20:33:07 +00:00
<style>body { background-color: olive; }</style>
</head>
<body>
2024-02-14 20:33:07 +00:00
<h1>External HTML</h1>
<div id="main"></div>
</body>
</html>
"#
2024-01-18 20:32:01 +00:00
.into(),
),
)
.launch(app);
}
fn app() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2024-02-14 20:33:07 +00:00
h1 { "Custom HTML!" }
2024-01-14 05:12:21 +00:00
}
}