I am Beginner in unity. As I am trying to create a form in the single scene with multiple textField. For keyboard i need to enable the next button also if i select the last textfield in the scene screen should be move to the particular textfield. In iOS we have the TPKeyboardAvoidScrolling framework to reduce the work. Do we have any framework for this or anyone please suggest some examples.
Asked
Active
Viewed 183 times
1 Answers
0
If your textview all have same size, you can simply change position of "container".
Let's say your textviews have a size of 100x50. If you want to go to the 5th element, your localPosition
would be Vector3.Up * 50 * 5
.

Draco18s no longer trusts SE
- 15,628
- 3
- 36
- 56

smyl
- 96
- 8
-
I mean "all textviews has same size". – smyl Nov 12 '18 at 07:48
-
Next option in keyboard how can i enable – keerthikaitmit Nov 12 '18 at 08:02
-
1@smyl Instead of leaving a comment on your answer, edit your answer. Answers are editable for this reason. – Draco18s no longer trusts SE Nov 12 '18 at 16:33