-
-
Notifications
You must be signed in to change notification settings - Fork 326
Open
Description
I want to put my app logo in the <Navbar/> without the title.
I tried to put in left prop, but it's not work. How can I put image in the <Navbar/>?
This is the code I tried.
import { Image } from 'react-native';
import { NavBar } from 'galio-framework';
...
const leftComponent = () => {
return (
<Image
resizeMode="contain"
source={require("../../images/logo-navbar.png")}
/>
);
}
...
<NavBar
title=""
style={styles.navbar}
left={leftComponent}
leftStyle={{
width: 270,
height: 80
}}
/>Metadata
Metadata
Assignees
Labels
No labels