fix: center time

This commit is contained in:
Jonathan Kelley 2022-10-07 01:11:59 -07:00
parent 64c19c6e67
commit 62e067ef5d

110
README.md
View file

@ -78,60 +78,62 @@ If you know React, then you already know Dioxus.
- And more! Read the [full release post](https://dioxuslabs.com/blog/introducing-dioxus/). - And more! Read the [full release post](https://dioxuslabs.com/blog/introducing-dioxus/).
## Supported Platforms ## Supported Platforms
<table style="width:100%"> <div align="center">
<tr> <table style="width:100%">
<td><em>Web</em></td> <tr>
<td> <td><em>Web</em></td>
<ul> <td>
<li>Render directly to the DOM using WebAssembly</li> <ul>
<li>Pre-render with SSR and rehydrate on the client</li> <li>Render directly to the DOM using WebAssembly</li>
<li>Simple "hello world" at about 65kb, comparable to React</li> <li>Pre-render with SSR and rehydrate on the client</li>
<li>Built-in dev server and hot reloading for quick iteration</li> <li>Simple "hello world" at about 65kb, comparable to React</li>
</ul> <li>Built-in dev server and hot reloading for quick iteration</li>
</td> </ul>
</tr> </td>
<tr> </tr>
<td><em>Desktop</em></td> <tr>
<td> <td><em>Desktop</em></td>
<ul> <td>
<li>Render using Webview or - experimentally - with WGPU or Skia </li> <ul>
<li>Zero-config setup. Simply cargo-run to build your app </li> <li>Render using Webview or - experimentally - with WGPU or Skia </li>
<li>Full support for native system access without electron-esque IPC </li> <li>Zero-config setup. Simply cargo-run to build your app </li>
<li>Supports macOS, Linux, and Windows. Portable <3mb binaries </li> <li>Full support for native system access without electron-esque IPC </li>
</ul> <li>Supports macOS, Linux, and Windows. Portable <3mb binaries </li>
</td> </ul>
</tr> </td>
<tr> </tr>
<td><em>Mobile</em></td> <tr>
<td> <td><em>Mobile</em></td>
<ul> <td>
<li>Render using Webview or - experimentally - with WGPU or Skia </li> <ul>
<li>Support for iOS and Android </li> <li>Render using Webview or - experimentally - with WGPU or Skia </li>
<li><em>Significantly</em> more performant than React Native </li> <li>Support for iOS and Android </li>
</ul> <li><em>Significantly</em> more performant than React Native </li>
</td> </ul>
</tr> </td>
<tr> </tr>
<td><em>Liveview</em></td> <tr>
<td> <td><em>Liveview</em></td>
<ul> <td>
<li>Render apps - or just a single component - entirely on the server</li> <ul>
<li>Integrations with popular Rust frameworks like Axum and Warp</li> <li>Render apps - or just a single component - entirely on the server</li>
<li>Extremely low-latency and ability to support 10,000+ simultaneous apps</li> <li>Integrations with popular Rust frameworks like Axum and Warp</li>
</ul> <li>Extremely low-latency and ability to support 10,000+ simultaneous apps</li>
</td> </ul>
</tr> </td>
<tr> </tr>
<td><em>Terminal</em></td> <tr>
<td> <td><em>Terminal</em></td>
<ul> <td>
<li>Render apps directly into your terminal, similar to <a href="https://github.com/vadimdemedes/ink"> ink.js</a></li> <ul>
<li>Powered by the familiar flexbox and CSS model of the browser</li> <li>Render apps directly into your terminal, similar to <a href="https://github.com/vadimdemedes/ink"> ink.js</a></li>
<li>Built-in widgets like text input, buttons, and focus system</li> <li>Powered by the familiar flexbox and CSS model of the browser</li>
</ul> <li>Built-in widgets like text input, buttons, and focus system</li>
</td> </ul>
</tr> </td>
</table> </tr>
</table>
</div>
## Why Dioxus? ## Why Dioxus?
There's tons of options for building apps, so why would you choose Dioxus? There's tons of options for building apps, so why would you choose Dioxus?