April 2017
Intermediate to advanced
414 pages
8h 14m
English
The styling for FeedList needs to change conditionally on Android so that its container style does not contain the marginTop property. Modify FeedList so that it does the following functions:
Here are my FeedList modifications for Android:
// Friends/app/components/FeedList/index.js ... import { Platform, ... } from 'react-native'; ... export default class FeedList extends Component { ... render () { ... return ( <View style={ Platform.OS === 'ios' ? styles.container : styles.androidContainer }> ...Read now
Unlock full access