Skip to content

[Feature]: Show up after first render #89

@NtskwK

Description

@NtskwK

Prerequisites

  • I understand that Issues are for feedback and problem-solving, not for complaints. I will provide as much information as possible.
  • I have not read carefully and just clicked through everything, believing this won't affect issue handling.
  • I have searched existing issues to ensure this is not a duplicate
  • I have checked the roadmap in the README
  • This feature would benefit multiple users, not just myself

Feature Type

UI/UX Enhancement

Problem Statement

Webview app is essentially a web browser underneath, so it needs to load all the HTML, CSS and JavaScript files after window is created. This can take some time, that's why it will show up blank for a seconds.

Proposed Solution

As the title of eht issue.

Alternative Solutions

We can do this in Electron.

const {BrowserWindow} = require('electron');

const window = new BrowserWindow({
    show: false
});

window.once('ready-to-show', () => {
    window.show();
});

Have any solution on tauri?

Examples and References

None

Priority

Medium (nice to have)

Contribution

  • I would be willing to implement this feature
  • I would be willing to help test this feature
  • I can provide design mockups or specifications

Additional Context

No response

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions