I want a view that looks something like this
<view>
<custom-button> //hard-coded
<custom-button> //hard-coded
<list>
// dynamic list contents
</list>
<view>
Where all of the contents are scrollable within the outer view. My first thought was to put it all in a scrollview but apparently you can't place a listview inside a scrollview. What is the best approach to something like this?