We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From todo/listview onwards need to add flexDirection: 'row' for the content view element, otherwise the width is only as much as the content:
todo/listview
flexDirection: 'row'
Fix with:
content: { flex: 1, + flexDirection: "row" },
Result:
Environment:
Output of react-native info:
react-native info
Environment: OS: Linux 4.4 Node: 8.9.4 Yarn: 1.3.2 npm: 5.6.0 Watchman: Not Found Xcode: N/A Android Studio: 3.0 AI-171.4443003
Packages: (wanted => installed) react: 16.2.0 => 16.2.0 react-native: 0.52.0 => 0.52.0
The text was updated successfully, but these errors were encountered:
Thanks, this tutorial was developed for a much older version of React Native which applied different default styles.
Sorry, something went wrong.
No branches or pull requests
From
todo/listview
onwards need to addflexDirection: 'row'
for the content view element, otherwise the width is only as much as the content:Fix with:
content: { flex: 1, + flexDirection: "row" },
Result:
Environment:
Output of
react-native info
:Environment:
OS: Linux 4.4
Node: 8.9.4
Yarn: 1.3.2
npm: 5.6.0
Watchman: Not Found
Xcode: N/A
Android Studio: 3.0 AI-171.4443003
Packages: (wanted => installed)
react: 16.2.0 => 16.2.0
react-native: 0.52.0 => 0.52.0
The text was updated successfully, but these errors were encountered: