Create powerful and user-friendly editors for you and your team!
The list is actually highly customizable via the ListDrawerSettings attribute. Here is how you would make a list show one item per page.
public class SomeMonoBehaviour : MonoBehaviour
{
[ListDrawerSettings(NumberOfItemsPerPage = 1)]
public List SomeList;
}