dioxus/examples/custom_html.rs

41 lines
939 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.
2024-01-20 00:36:40 +00:00
use dioxus::desktop::Config;
use dioxus::prelude::*;
fn main() {
LaunchBuilder::desktop()
.with_cfg(
2024-01-18 20:32:01 +00:00
Config::new().with_custom_head("<style>body { background-color: red; }</style>".into()),
)
.launch(app);
LaunchBuilder::desktop()
.with_cfg(
2024-01-18 20:32:01 +00:00
Config::new().with_custom_index(
r#"
<!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);
}
fn app() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
div { h1 { "hello world!" } }
2024-01-14 05:12:21 +00:00
}
}