UNLV-CS472-672 / 2024-S-GROUP5-Munch

The Munch app is a social platform where users create profiles by selecting preferred foods.
1 stars 11 forks source link

Use blank styles for tamagui components #56

Open noodaj opened 5 months ago

noodaj commented 5 months ago

Is your feature request related to a problem? Please describe. I see that since my last RP was pushed, there are some differences between the code for each individual page. We need to have consistency throughout our app.

Describe the solution you'd like Whenever we are using a tamagui component if there are some styling that is already preapplied by tamagui, when using the component, have it unstyled.

import { Input } from 'tamagui'

<Input unstyled/>

This will remove the styling but if there are some height differences or some padding differences you can use the HTML styling to fix them.

Describe alternatives you've considered None, need consistency

Additional context Use components that are already done like UserInput for inputs. Reference existing code to figure out how it works.