-
-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/DioxusLabs/dioxus into la…
…zy_tui
- Loading branch information
Showing
22 changed files
with
746 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
//! 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() { | ||
dioxus::desktop::launch_cfg(app, |c| { | ||
c.with_custom_head("<style>body { background-color: red; }</style>".into()) | ||
}); | ||
|
||
dioxus::desktop::launch_cfg(app, |c| { | ||
c.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> | ||
"# | ||
.into(), | ||
) | ||
}); | ||
} | ||
|
||
fn app(cx: Scope) -> Element { | ||
cx.render(rsx! { | ||
div { | ||
h1 {"hello world!"} | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.