Problem Statement
Which property aligns items vertically when flexDirection is 'row'?
Explanation
alignItems controls the cross-axis alignment of children. When flexDirection is 'row', it aligns items vertically.
Common values include 'flex-start', 'center', and 'stretch'.