bevy icon indicating copy to clipboard operation
bevy copied to clipboard

Support splash screen

Open king0952 opened this issue 7 months ago • 1 comments

What problem does this solve or what need does it fill?

I would like to make a desktop app with a splash screen to show some basic information (a logo, current version, etc.) of my software.

What solution would you like?

Something like this:

pub struct WindowPlugin {
    pub primary_window: Option<Window>,
    pub splash_window: Option<Window>,
    pub exit_condition: ExitCondition,
    pub close_when_requested: bool,
}

What alternative(s) have you considered?

Tauri Splashscreen

king0952 avatar Jul 01 '24 09:07 king0952