export const reverseList = {
container: {
display: 'flex',
flexDirection: 'column-reverse'
}
}
This should do the trick. Also reverse the sort order on the list view so the correct items show up at the bottom.
I have found the answer:
export const columnReverse = {
container: {
display: 'block'
},
listItem: {
display: 'block',
transform: 'rotate(180deg)'
},
container: {
transform: 'rotate(180deg)'
}
}
It is a little scuffed, and it moves the scroll bar to the left, but that can also be fixed, and it does what I want.