Problem Statement
Which property allows flex items to move onto multiple lines in React Native?
Explanation
The flexWrap property lets items wrap onto multiple lines when there isn’t enough space.
By default, React Native uses 'nowrap', so you need to explicitly set flexWrap to 'wrap' to allow wrapping.