I'm glad that you liked it.
As you said you are new to Flutter. I will suggest you simple solution. Suppose you have two screen where you are asking for data from user.
Screen 1: Name of User.
Screen 2: Email of User.
Screen 3: User Profile shwoing their name and email
Solution: When you will navigate from Screen 1 to Screen 2, you should passs the name to screen 2. So, In screen 2 you have name from previous screen. In Screen 2 you will get email of user. Pass the name and email from screen 2 to Screen 2.
How to pass data from one screen to other screen. There are two ways of doing this.
1. Constructor
2. Arguments