KBLNY/react-native-message-bar

Can't custom color for titleStyle

Closed this issue · 1 comments

When I custom stylesheet background, the background is work as my expected but the color of title and message change to the dark color. Even I change the textStyle, it still not working. Do u guys have any idea to fix this? Tks in advance.

Here is my code:

MessageBarManager.showAlert({
title: customTitle,
message: customMessage,
alertType: 'info',
duration: 5000,
durationToShow: 500,
onTapped: this.state.actionCallback,
stylesheetInfo: {backgroundColor: '#4065b5', strokeColor: '#4065b5'},
titleStyle: {color: 'white', fontSize: 18, fontWeight: 'bold'},
messageStyle: {color: 'white', fontSize: 16},
});

screenshot_1516198674

You can use this:

stylesheetInfo: {
        backgroundColor: '#ff1600',
        strokeColor: '#006acd',
        titleColor: '#ffffff',
        messageColor: '#ffffff'
}