Assessments
- Why does the
react-native-geocoder
module uses Google Maps reverse geocoding services?
- To store a human-readable position for the location in which the map is centred
- To translate some coordinates into a human-readable location
- To add an API key in order to authenticate our app with the service
- To ensure the name of the location is recalculated every time the map is moved to show a different region
- Which of the following properties is used for aligning elements?
justifyContent
alignLeft
alignRight
alignJustify
- By default, React Native and Flexbox stack elements ________.
- Diagonally
- Reverse
- Vertically
- Horizontally
- Which of the following lines of code extracts the height and the width from a device into two variables?
const {height, width} = Dimensions.get('height, width');
constant {height, width} = Dimensions.get('window');
const {height, width} = get('window');
const {height, width} = Dimensions.get('window');
- Which are the four properties in order to add a shadow to a component?