Home > Software design >  Best way to give feedback to user on submitting a form React-Native
Best way to give feedback to user on submitting a form React-Native

Time:02-03

I'm looking for a good way to give positive feedback to the user, so they know when they press 'Submit' that the data they typed in has been registered.

Alert.alert() could do it, but Im looking for something they dont have to dismiss/press 'ok' to. Preferably something that dismisses itself.

Any ideas?

CodePudding user response:

It is more of a design choice, but if you want something that is not intrusive, you can use a Snackbar

  • Related