TAO - Window Creation Library

License Chat Server website https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg support

Cross-platform application window creation library in Rust that supports all major platforms like Windows, macOS, Linux, iOS and Android. Built for you, maintained for Tauri.

Cargo Features

TAO provides the following features, which can be enabled in your Cargo.toml file:

Platform-specific notes

Android

This library makes use of the ndk-rs crates, refer to that repo for more documentation.

Running on an Android device needs a dynamic system library, add this to Cargo.toml:

toml [[example]] name = "request_redraw_threaded" crate-type = ["cdylib"]

And add this to the example file to add the native activity glue:

```rust

[cfgattr(targetos = "android", ndk_glue::main(backtrace = "on"))]

fn main() { ... } ```

And run the application with cargo apk run --example request_redraw_threaded

Linux

Gtk and its related libraries are used to build the support of Linux. Be sure to install following packages before building:

Arch Linux / Manjaro:

bash sudo pacman -S gtk3

For tray feature:

bash sudo pacman -S libappindicator-gtk3

Debian / Ubuntu:

bash sudo apt install libgtk-3-dev

For tray feature, choose one of following packages:

bash sudo apt install libappindicator3-dev

bash sudo apt install libayatana-appindicator3-dev

Acknowledgement

This is a fork of winit which replaces Linux's port to Gtk. We need it not only because of webkit2gtk, but also a lot of Desktop Environment features like menu bar, system tray, global shortcuts etc. In the future, we want to make these features more modular as separate crates. So we can switch back to winit and also benefit the whole community.