()
| 2 | import { BadgedBox, Badge, Icon } from "jetpack-compose-react-native"; |
| 3 | |
| 4 | export default function BadgesExample() { |
| 5 | return ( |
| 6 | <View style={styles.container}> |
| 7 | <Text style={styles.header}>Badge Example</Text> |
| 8 | <BadgedBox badge={<Badge content="Hello" />}> |
| 9 | <Icon |
| 10 | name="notifications" |
| 11 | theme="filled" |
| 12 | contentDescription="notifications icon" |
| 13 | /> |
| 14 | </BadgedBox> |
| 15 | </View> |
| 16 | ); |
| 17 | } |
| 18 | |
| 19 | const styles = StyleSheet.create({ |
| 20 | container: { |
nothing calls this directly
no outgoing calls
no test coverage detected