dioxus-cli 0.3.1

CLI tool for developing, testing, and publishing Dioxus apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
# OS Functions

> you can use OS functions to get some system information

### current_platform() -> string ("windows" | "macos" | "linux")

This function can help you get system & platform type:

```lua
local platform = plugin.os.current_platform()
```