How to make same-width buttons in a column?

            Column::new()
                .push(button("Alpha").width(Length::Fill))
                .push(button("Beta").width(Length::Fill))
                .push(button("Gamma").width(Length::Fill))
                .align_x(Horizontal::Center)
                .width(Length::Shrink)

This makes all the buttons disappear.