BruinEngineeringF22 / Sigmax_App

1 stars 3 forks source link

Implement Login Screen #2

Closed JackTheVac closed 1 year ago

JackTheVac commented 1 year ago

A rough layout of login screen

text input documentation and how to record down the user input using useState Variables

For text input example that react native give, when you get to

`const UselessTextInput = () => {
  const [text, onChangeText] = React.useState("Useless Text");
  const [number, onChangeNumber] = React.useState(null);

  return (
    <SafeAreaView>
      <TextInput...
.....

`

Try not to use React.useState. Import the module (look at useState Variable documentation on how to do that) and call the useState function directly