bevy_extended_ui 1.3.0-beta.2

Create simply ui's with css and html for bevy.
Documentation
use bevy::prelude::*;
use bevy::window::WindowResolution;

use crate::ExtendedUiPlugin;

pub fn make_app(title: impl Into<String>) -> App {
    let mut app = App::new();

    app.add_plugins(DefaultPlugins.set(WindowPlugin {
        primary_window: Some(Window {
            title: title.into(),
            resolution: WindowResolution::new(1270, 720),
            ..default()
        }),
        ..default()
    }))
        .add_plugins(ExtendedUiPlugin);

    app
}