static List<bool> makeSelectedMap(int length, int selectedIndex) { return List.generate(length, (index) => index == selectedIndex); }