DEV Community

Discussion on: Question: How to style data in Firebase

Collapse
 
uddeshjain profile image
Uddesh

One way to do that is you can store users choice in firebase like

isBold: true or false.

So when you display the data just put a condition like if isBold is true then display bold otherwise display normal text.

Collapse
 
supremerumham profile image
Alex

okay thank you!!