Anyone have any thoughts why this child is not rendering? This is ultimately going to be a row/column display with data. Right now I am trying to just get the pieces in the correct hierarchy, but this isn't working.
fn row_element(
mut commands: Commands,
){
commands
.spawn(NodeBundle{
style: Style {
display: Display::Flex,
width: Val::Percent(80.),
height: Val::Percent(40.),
bottom: Val::Px(300.),
flex_direction: FlexDirection::Column,
flex_wrap: FlexWrap::Wrap,
..default()
},
visibility: Visibility::Visible,
..default()
}).insert(RowElementParent);