Hi my goal is to have a list of RadioButtons where each of them will have their unique name. At the top there is a Text() field which will take that name from radio bu...
I want to create two widgets. Both displaying a 2 column grid with buttons that can be selected/unselected. One should have radio logic (single selection) where as the...
Im rebuilding an old app and need to make radio buttons look like actual buttons. Whats the best way to do this? Old app reference: <img src="https://i...
I can't update my state inside modalBottomSheet when i am using radio buttons. When I am changing the radio buttons i am retrieving data from server and i want to upda...
How to choose only one radio button for each question. now, in my code there is a problem when choosing the answer option A in the first question, then the...
I managed to display a <code>RadioListTile</code> List based on the data I have. see my code below: <pre><code>class ShipFromItemList extends StatefulWidget { @...
I have been trying to get the radio button functionality using checkboxes in flutter but I could not come up with a solution for this issue. Most of the examples I com...
I have a <code>Radio</code> button inside a <code>ListTile</code>. When the <code>ListTile</code> is clicked, I change the <code>Radio</code>'s value. I don't want the...
I am trying to make multiple choice questions using <code>RadioListTile</code>. <pre class="lang-dart prettyprint-override"><code>RadioListTile( value: 1, grou...
I tried to make radiobuttons by using Streambuilder and Bloc. so I made streamcontroler and when radiobuttons clicked, I made streamcontrl.add(value)...
The problem is that <code>_qualificationRadioGroupValue</code> value update when <code>setState()</code> called but after build method called its reset to its original...
I have a modal bottom sheet on my page, whit 2 radio buttons. Radio button class is inside the same page. Modal bottom sheet cannot reach selected value from radio but...
let's say i want to make a quiz page that will shuffle the radio button option. i've done trying to shuffle the List() (containing radio button) in init state...
I want to make a design in which by clicking on the bottom sheet it will show radio buttons. When I select the radio button it will open the date picker. Below is my c...
Ive got a list of strings <pre><code>List<String> answerOptions=['Apple','Orange','Grapes','Kiwi']; </code></pre> and I've created a custom radio button f...