correctly set up background color in mobile example (#12384)

# Objective

- Since #11165, the button in the mobile example doesn't visually react
to touches

## Solution

- Correctly set up the background color
This commit is contained in:
François Mockers 2024-03-11 19:36:52 +01:00 committed by GitHub
parent 879b170f28
commit 40732148da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,7 +104,8 @@ fn setup_scene(
// Test ui
commands
.spawn(ButtonBundle {
.spawn((
ButtonBundle {
style: Style {
justify_content: JustifyContent::Center,
align_items: AlignItems::Center,
@ -114,8 +115,11 @@ fn setup_scene(
bottom: Val::Px(50.0),
..default()
},
image: UiImage::default().with_color(Color::NONE),
..default()
})
},
BackgroundColor(Color::WHITE),
))
.with_children(|b| {
b.spawn(
TextBundle::from_section(