-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: background color APIs (#11486)
* feat: background color APIs closes #10519 closes #1564 * clippy * git branch * bundle * fix hex color schema pattern * add missing `^` * fix iOS * revert test * revert apple-codesign bump * fmt * add change files --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
- Loading branch information
1 parent
fabc2f2
commit 4d545ab
Showing
26 changed files
with
976 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@tauri-apps/api": minor:feat | ||
--- | ||
|
||
Added `Webview::setBackgroundColor`, `WebviewWindow::setBackgroundColor` APIs to set the window background color dynamically | ||
and a `backgroundColor` window option to set the background color on window creation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"tauri": minor:feat | ||
"tauri-utils": minor:feat | ||
"tauri-runtime": minor:feat | ||
"tauri-runtime-wry": minor:feat | ||
--- | ||
|
||
Added `Window::set_background_color` and `WindowBuilder::background_color`. |
Oops, something went wrong.
4d545ab
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.
that's exciting!