pub trait TheDropdownMenuTrait: TheWidget {
// Required methods
fn add_option(&mut self, option: String);
fn selected_text(&self) -> String;
fn set_selected_index(&mut self, index: i32);
fn selected_index(&self) -> usize;
}pub trait TheDropdownMenuTrait: TheWidget {
// Required methods
fn add_option(&mut self, option: String);
fn selected_text(&self) -> String;
fn set_selected_index(&mut self, index: i32);
fn selected_index(&self) -> usize;
}