I have seen the code about custom Time Text style on the master but not branch not the version 0.4.3
Had the same issue.
Sadly, does not seem to exist in the npm version.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
renderTime(props) {
return (
<Time
{...props}
textStyle={{
right: {
color: "black"
},
left: {
color: "white"
}
}}
/>
);
}
renderTime(props) { return ( <Time {...props} textStyle={{ right: { color: "black" }, left: { color: "white" } }} /> ); }
Just tried to use it and the prop seems to be 'timeTextStyle'
timeTextStyle={{
right: {
color: 'black',
},
left: {
color: 'white',
},
}}
Most helpful comment
Just tried to use it and the prop seems to be 'timeTextStyle'