A React Native app for the ultimate thinking partner.

fix: add max-width constraint to center chat messages

Added maxWidth (800px) and centering to the messages list to prevent
messages from stretching full width on large screens.

Changes:
- Added maxWidth: 800 to messagesList style
- Added alignSelf: 'center' to center the content
- Added width: '100%' to ensure full width on smaller screens

+3
+3
src/screens/ChatScreen.tsx
··· 172 172 messagesList: { 173 173 paddingTop: 16, 174 174 paddingBottom: 16, 175 + maxWidth: 800, 176 + width: '100%', 177 + alignSelf: 'center', 175 178 }, 176 179 inputContainer: { 177 180 position: 'absolute',