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.
there's no supported API for unselecting all the buttons.
You should generally initialize a group of radio buttons so that one is selected. However, the API doesn't enforce this rule -- a group of radio buttons can have no initial selection. Once the user has made a selection, exactly one button is selected from then on. There's no supported API for unselecting all the buttons. However, if you really want to unselect all the buttons (not that we recommend it), invoking setSelected(null, true) on the ButtonGroup should do the trick.