local list = {
{actived = true, name = "a"},
{actived = false, name = "b"}
}
for k, v in ipairs(list) do
imgui.PushStyleColor(imgui.Col.Button, bool and imgui.ImVec4(1, 1, 1, 1) or imgui.ImVec4(0.5, 0.5, 0.5, 1))
if imgui.Button(v.name) then
v.actived = not v.actived
for i, v in ipairs(list) do
if i ~= k then
v.actived = false
end
end
end
imgui.PopStyleColor(
end
if list[1].actived then
imgui.Text("1 page")
else
imgui.Text("2 page")
end