mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-22 04:03:04 +00:00
fix versions in more places
This commit is contained in:
parent
de9fdefa84
commit
208bc04575
5 changed files with 27 additions and 26 deletions
|
@ -1,20 +1,29 @@
|
||||||
<div>
|
<div align="center">
|
||||||
<h1>🌗🚀 Dioxus (lib)</h1>
|
<style>
|
||||||
<p>
|
@media (prefers-color-scheme: dark) { .darkmode-image { display: none; } }
|
||||||
<strong>A concurrent, functional, virtual DOM for Rust</strong>
|
@media (prefers-color-scheme: light) { .lightmode-image { display: none; } }
|
||||||
</p>
|
</style>
|
||||||
|
<img
|
||||||
|
src="https://github.com/user-attachments/assets/6c7e227e-44ff-4e53-824a-67949051149c"
|
||||||
|
alt="Build web, desktop, and mobile apps with a single codebase."
|
||||||
|
width="100%"
|
||||||
|
class="darkmode-image"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src="https://github.com/user-attachments/assets/9c6a5fac-806d-4391-80d0-d87d63c406eb"
|
||||||
|
alt="Build web, desktop, and mobile apps with a single codebase."
|
||||||
|
width="100%"
|
||||||
|
class="lightmode-image"
|
||||||
|
>
|
||||||
|
<div>
|
||||||
|
<a href=https://dioxuslabs.com/learn/0.6/getting_started>Getting Started</a> | <a href="https://dioxuslabs.com/learn/0.6">Book (0.6)</a> | <a href="https://github.com/DioxusLabs/dioxus/tree/main/examples">Examples</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
> This crate implements dioxus-lib which is a renderer-free version of Dioxus. This crate is intended to be used by library authors who need a stable core version of dioxus withuot pulling in renderer-related dependencies on accident.
|
> This crate implements dioxus-lib which is a renderer-free version of Dioxus. This crate is intended to be used by library authors who need a stable core version of dioxus withuot pulling in renderer-related dependencies on accident.
|
||||||
|
|
||||||
# Resources
|
|
||||||
|
|
||||||
This overview provides a brief introduction to Dioxus. For a more in-depth guide, make sure to check out:
|
|
||||||
|
|
||||||
- [Getting Started](https://dioxuslabs.com/learn/0.6/getting_started)
|
|
||||||
- [Book (0.5)](https://dioxuslabs.com/learn/0.6)
|
|
||||||
- [Examples](https://github.com/DioxusLabs/dioxus/tree/main/examples)
|
|
||||||
|
|
||||||
# Overview and Goals
|
# Overview and Goals
|
||||||
|
|
||||||
Dioxus makes it easy to quickly build complex user interfaces with Rust. Any Dioxus app can run in the web browser,
|
Dioxus makes it easy to quickly build complex user interfaces with Rust. Any Dioxus app can run in the web browser,
|
||||||
|
|
|
@ -1,15 +1,7 @@
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<style>
|
<style>
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) { .darkmode-image { display: none; } }
|
||||||
.darkmode-image {
|
@media (prefers-color-scheme: light) { .lightmode-image { display: none; } }
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
.lightmode-image {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
<img
|
<img
|
||||||
src="https://github.com/user-attachments/assets/6c7e227e-44ff-4e53-824a-67949051149c"
|
src="https://github.com/user-attachments/assets/6c7e227e-44ff-4e53-824a-67949051149c"
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
//!
|
//!
|
||||||
//! Platform features (the current platform determines what platform the [`launch()`] function runs):
|
//! Platform features (the current platform determines what platform the [`launch()`] function runs):
|
||||||
//!
|
//!
|
||||||
//! - `fullstack`: enables the fullstack platform. This must be used in combination with the `web` feature for wasm builds and `axum` feature for server builds
|
//! - `fullstack`: enables the fullstack platform. This must be used in combination with the `web` feature for wasm builds and `server` feature for server builds
|
||||||
//! - `desktop`: enables the desktop platform
|
//! - `desktop`: enables the desktop platform
|
||||||
//! - `mobile`: enables the mobile platform
|
//! - `mobile`: enables the mobile platform
|
||||||
//! - `web`: enables the web platform. If the fullstack platform is enabled, this will set the fullstack platform to client mode
|
//! - `web`: enables the web platform. If the fullstack platform is enabled, this will set the fullstack platform to client mode
|
||||||
|
|
|
@ -29,7 +29,7 @@ Formats the current file as RSX.
|
||||||
This overview provides a brief introduction to Dioxus. For a more in-depth guide, make sure to check out:
|
This overview provides a brief introduction to Dioxus. For a more in-depth guide, make sure to check out:
|
||||||
|
|
||||||
- [Getting Started](https://dioxuslabs.com/learn/0.6/getting_started)
|
- [Getting Started](https://dioxuslabs.com/learn/0.6/getting_started)
|
||||||
- [Book (0.5)](https://dioxuslabs.com/learn/0.6)
|
- [Book (0.6)](https://dioxuslabs.com/learn/0.6)
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
- Check out the website [section on contributing](https://dioxuslabs.com/learn/0.6/contributing).
|
- Check out the website [section on contributing](https://dioxuslabs.com/learn/0.6/contributing).
|
||||||
|
|
|
@ -223,7 +223,7 @@ Dioxus는 사이드 프로젝트에서 소수의 전임 엔지니어 팀으로
|
||||||
|
|
||||||
## 예제 실행하기
|
## 예제 실행하기
|
||||||
|
|
||||||
> 이 저장소의 메인 브랜치에 있는 예제들은 dioxus의 git 버전과 CLI를 대상으로 합니다. 최신 안정 버전의 dioxus와 호환되는 예제를 찾고 있다면 [0.5 브랜치](https://github.com/DioxusLabs/dioxus/tree/v0.5/examples)를 확인하세요.
|
> 이 저장소의 메인 브랜치에 있는 예제들은 dioxus의 git 버전과 CLI를 대상으로 합니다. 최신 안정 버전의 dioxus와 호환되는 예제를 찾고 있다면 [0.5 브랜치](https://github.com/DioxusLabs/dioxus/tree/v0.6/examples)를 확인하세요.
|
||||||
|
|
||||||
이 저장소 최상위에 있는 예제들은 다음과 같이 실행할 수 있습니다:
|
이 저장소 최상위에 있는 예제들은 다음과 같이 실행할 수 있습니다:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue