# Task 2: Dial Phone app Build a flutter app for adding contacts and save it in memory. The contact info includes only the phone number and a random user name. The propsed ui is given below: ![](https://i.imgur.com/igCmDEa.png) ## UI The ui consists of two pages: * **Dial Page**: for typing and save the new contacts. * **Contacts Page**: for view saved contacts. ### Dial Page Avoid using TextField or Packages. You can simply use Text and Buttons with setState method. The contacts icon should naviagte the app to the contacts page (use Navigator). ### Contacts Page This page has no functionality. It only shows the saved contatcs. Avoid using scrollable column. You can limit the number of saved account (optional). ## Resources 1- https://docs.flutter.dev/cookbook/navigation/navigation-basics You may want to read about: - Stack - TextButton - Navigator - AppBar