has anyone built a splittable tab application? #6464
-
I'm wondering if you have seen any splittable tab applications built using tauri? I want to know if it is possible to do this. examples of splittable tab applications are chrome and sublime text where you can drag to split a tab into a new window. and use dropping to merge two separate windows into one. I understand tauri supports multi-window apps. but I don't know if the drag-and-drop part is easy to implement. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Sooo, i can't give any examples here, just a heads-up: Tauri does not support multiple webviews inside the same window, so all that tabbing mechanism would be html/js only (which may make it easier for you to google stuff?) |
Beta Was this translation helpful? Give feedback.
-
Spacedrive has support for tabs. Looks like it's built using React in userland. https://github.com/spacedriveapp/spacedrive/blob/d79f5046d5a452f04975a38a7be9a7dd4a45ea2d/apps/desktop/src/App.tsx#L218 |
Beta Was this translation helpful? Give feedback.
Sooo, i can't give any examples here, just a heads-up: Tauri does not support multiple webviews inside the same window, so all that tabbing mechanism would be html/js only (which may make it easier for you to google stuff?)