So I have two users. First is user C and second is user S (customer,seller). Anyone know how can I display, if user is category C than the label "YOU ARE CATEGORY C" will appear and if the user is user S the label "YOU ARE CATEGORY S" will appear. I use firebase in storing the user category
If CATAGORY C then display Label.Text = You are category c else Label.Text = You are category S .
Create some Blocks. If you run into trouble, post them here and someone will provide specific advice. Exactly what you need to do depends on your log in code so far.
What you do depends on the information you collect when someone registers to use your app. Your registration process probably collects name, address etc. Add a category perhaps called status where a user enters c or s. The category will be associated with the USER.. When the USER logs in, read the data associated with the USER for status
How to do that depends on the code you already wrote to identify the USER.