Question: Problem #2 ( 30 points): Learn about the fundamentals of tkinter widgets and GUI app 1. Add another package named googleaccount to the src folder.

Problem \#2 ( 30 points): Learn about the fundamentals of tkinter widgets and GUI app 1. Add another package named googleaccount to the src folder. 2. Implement the sign up form for a Google account here. You can download all the necessary images from the page or use screenshots. a. You can set the initial text for the tk.Entry in two ways: entryName. insert (0, "John") \# or init = tk.StringVar () init.set ("John") entryName = tk.Entry (root, textvariable=init) b. Implementing the checkbox "Show password" is optional. When the Next button is clicked, simply display user provided data as a somehow formatted output somewhere you have chosen. c. When the Sign in instead button is clicked, create a form with two fields, username and password, and a "Sign in" button. When this button is cliecked af the form is filled out, just display the data somewhere again. 6. Test your app before submission. a. Export your project to a zip file (See the Canvas course site for how-to-export). b. Create a test project in Eelipse and import the zip file to the project (See the Canvas course site for how-to-import). c. Run your app to see if it runs flawlessly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
