Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
pack [button .b -text Show! -command show -width 10] -pady 10
proc show {} {
pack [frame .f -relief groove -bd 2]
pack [entry .f.e -width 15] -padx 20 -pady 20
.b config -text Hide! -command hide
}
proc hide {} {
destroy .f
.b config -text Show! -command show
}