HousewareHQ / frontend-engineering-octernship

45 stars 55 forks source link

Constraints on the project #7

Closed adarsh500 closed 1 year ago

adarsh500 commented 1 year ago

Hey Mentors, I had a few questions

  1. Would we need a maximum limit of characters for the string?
  2. Do we have to consider numbers and special characters as valid input
  3. Are we allowed to use tab-based navigation, or is it limited to route-based navigation only?
Abusayid693 commented 1 year ago
  1. Should we consider empty space in between string as valid input eg aba aba f
manaver commented 1 year ago

@Abusayid693 no, check the screen1 description. If the input field is empty or has only space characters, the user should be shown an alert asking them to provide a non-empty value.

adarsh500 commented 1 year ago

Yes, but here the case is both empty space and valid letters combined

theBstar commented 1 year ago

For simplicity let's not do any special treatment for special characters. Treat them as valid input.

Not navigation, lets implement route-based navigation.

theBstar commented 1 year ago

@adarsh500 Let me know if this answers your q. Feel free to close the issue if it does.

adarsh500 commented 1 year ago

That helps, thanks !

vaibhav-xp commented 1 year ago

@adarsh500 Let me know if this answers your q. Feel free to close the issue if it does.

For simplicity let's not do any special treatment for special characters. Treat them as valid input.

Not navigation, lets implement route-based navigation.

In the task written provide a non-empty value. Therefore I implemented and will navigate to screen 2. Is this will correct?