Event Font Colour #311
Unanswered
metalreign76
asked this question in
Q&A
Replies: 3 comments 1 reply
-
I havent been able to make any changes to the font in the individual events displays...weight, size. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @metalreign76, sorry the late reply You can provide your own const MyEventComponent = (event) => (
<Text style={[
{ fontWeight: 'bold', fontSize: '20' }, // style for all events
event.textStyle, // custom style per event, if needed
]}>
{event.description}
</Text>
)
// ... then provide the prop:
EventComponent={MyEventComponent} |
Beta Was this translation helpful? Give feedback.
1 reply
-
Also, I think we can add a prop UPDATE: I added these things in #313 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to have the event text in a color other than white?
I tried to pass the style property in the EventItem object, setting the color property within but it had no effect.
Beta Was this translation helpful? Give feedback.
All reactions