class ActiveAdmin::Views::DropdownMenu

Action List - A button with a drop down menu of links

Creating a new action list:

dropdown_menu "Administration" do
  item "Edit Details", edit_details_path
  item "Edit My Account", edit_my_account_path
end

This will create a button with the label “Administration” and a drop down once clicked with 2 options.