Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
@@ -2,11 +2,11 @@ use crate::appearance::Appearance;
use crate::editor::EditorView;
use crate::ui_components::icons::Icon;
use pathfinder_color::ColorU;
use warp_core::ui::theme::Fill;
use warpui::elements::{Flex, ParentElement};
use warpui::ui_components::components::Coords;
use warpui::ui_components::text_input::TextInput;
use warpui::{
use galaxy_core::ui::theme::Fill;
use galaxyui::elements::{Flex, ParentElement};
use galaxyui::ui_components::components::Coords;
use galaxyui::ui_components::text_input::TextInput;
use galaxyui::{
elements::{
ConstrainedBox, Container, CornerRadius, CrossAxisAlignment, MouseStateHandle, Radius,
Shrinkable,
@@ -19,7 +19,7 @@ use warpui::{
},
Action, AppContext, Element,
};
use warpui::{SingletonEntity, ViewHandle};
use galaxyui::{SingletonEntity, ViewHandle};
pub const INPUT_BOX_FONT_SIZE: f32 = 14.;
pub const TEAM_BLOCK_INITIAL_HEIGHT: f32 = 92.;
@@ -161,7 +161,7 @@ pub fn render_input_row<A: Action + Clone>(
} else {
ConstrainedBox::new(
Icon::Check
.to_warpui_icon(Fill::Solid(ColorU::new(11, 142, 71, 255)))
.to_galaxyui_icon(Fill::Solid(ColorU::new(11, 142, 71, 255)))
.finish(),
)
.with_width(24.)