tauri-docs
tauri-docs copied to clipboard
The source for all Tauri project documentation.
Saw a comment in https://github.com/tauri-apps/tauri-docs/pull/712 about the edit buttons being off for our API pages. We could use this functionality to conditionally generate the edit URLs for our API pages:...
The question about knowing the app environment is often asked, for both backend and frontend sides. :point_right: This may indicate we're missing a simple feature for a better DX and/or...
Managing state of the application is a very common problem. Consider adding a section on managing state of the application in rust on [this page](https://tauri.app/v1/guides/features/). The documentation is available in...
I think the recent tweets to rewrite-it-in-tauri (like the one about Slack) has been inspiring community members to push for it in other projects. 😁 I think it's great to...
Context: https://discord.com/channels/616186924390023171/987434624349261874/987477601180348429 We should move the CLI guide to he under "Quick Start". This helps with the overall flow of the getting started section and also shows that cargo is...
Right now we can't enable languages that have two letter language code conflicts for translation (i.e. Chinese Traditional and Chinese Simplified, also shows up in Portuguese). This is because the...
> *Maybe this should be used as a feat? idk* ### Describe the bug https://github.com/tauri-apps/tauri/blob/45d427e44c0e06194079426c2690019643e03277/core/tauri/scripts/core.js#L136 here is my dom hierarchy: ```jsx import React from "react"; import classes from "./index.module.scss"; import...
Writing `add_native_item(MenuItem::About("Blabla".to_string()))` now returns error `expected 2 arguments` Please add an example in the doc `https://tauri.studio/docs/guides/menu`. Here `https://docs.rs/tauri-runtime/0.3.4/tauri_runtime/menu/enum.MenuItem.html#variant.About` it doesn't say if MacOS is supported. It doesn't seem so, metadata...
The [events guide](https://tauri.studio/docs/guides/events/) contains examples showing how to emit events to the backend: ``` // emits the `click` event with the object payload emit('click', { theMessage: 'Tauri is awesome!' })...