-
Notifications
You must be signed in to change notification settings - Fork 659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a guide on making a bespoke Titlebar
component
#2135
base: v2
Are you sure you want to change the base?
Conversation
❌ Deploy Preview for tauri-v2 failed.Built without sensitive environment variables
|
Here is a link to the deployment preview and the specific article that was written: |
src/components/CommandTabs.astro
Outdated
@@ -7,9 +7,10 @@ interface Props { | |||
yarn?: string; | |||
pnpm?: string; | |||
cargo?: string; | |||
bun?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's cool to see this article and the site preview. Looks nice :) But I think you will have an easier time getting the article merged if you don't also include this unrelated change in the same PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you're right, and now it isn't necessary anymore as we already implemented bun support on CommandTabs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, this change was not meant to be included in the original PR. Will update.
What kind of changes does this PR include?
Description
This PR adds a new guide that goes in-depth on making a custom titlebar for Tauri applications.
It also goes over conditional rendering using some plugins. I think it'll be a great addition to the
"learn" section, but can be moved around, of course.
I've also added a "bun" command to the command tabs component, needed it throughout the guide.