()
| 5 | import LogoLight from "./logo.light.png"; |
| 6 | |
| 7 | export default function Header() { |
| 8 | const theme = useTheme(); |
| 9 | return ( |
| 10 | <View |
| 11 | style={{ |
| 12 | paddingVertical: 16, |
| 13 | justifyContent: "center", |
| 14 | alignItems: "center", |
| 15 | }} |
| 16 | > |
| 17 | <Image |
| 18 | resizeMode="cover" |
| 19 | style={{ |
| 20 | width: 180, |
| 21 | height: 39, |
| 22 | resizeMode: "contain", |
| 23 | }} |
| 24 | source={theme.dark ? LogoLight : LogoDark} |
| 25 | /> |
| 26 | </View> |
| 27 | ); |
| 28 | } |
nothing calls this directly
no outgoing calls
no test coverage detected