Hi guys,
I have problem with ‘Themeable Browser’ plugin in my capacitor project. The problem is buttons are not showing. I can change the color and height of toolbar but unable to display buttons.
here is my code
const options: ThemeableBrowserOptions = {
statusbar: {
color: '#005A5Aff'
},
toolbar: {
height: 50,
color: '#005A5Aff',
},
backButton: {
wwwImage: '/assets/images/back.png',
align: 'left',
event: 'backPressed',
wwwImageDensity: 30,
},
}
there is a ‘back.png’ image inside ‘www/assets/images/’ folder also. but image not showing
I also tried as default but nothing showed
backButton: {
image: 'back',
align: 'left',
event: 'backPressed',
wwwImageDensity: 30,
},
please help
Thanks