MCPcopy Create free account
hub / github.com/react-native-maps/react-native-maps / CustomCallout

Class CustomCallout

example/src/examples/CustomCallout.tsx:5–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import {StyleSheet, View} from 'react-native';
4
5class CustomCallout extends React.Component<any, any> {
6 render() {
7 return (
8 <View style={[styles.container, this.props.style]}>
9 <View style={styles.bubble}>
10 <View style={styles.amount}>{this.props.children}</View>
11 </View>
12 <View style={styles.arrowBorder} />
13 <View style={styles.arrow} />
14 </View>
15 );
16 }
17}
18
19const styles = StyleSheet.create({
20 container: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…