skip to Main Content

After searching and several attempts, I did not find a way to increase the RadioListTile Radio(icon) Size in width, height and thickness
Is there a way to do that?

2

Answers


  1. You can use ListTile instead of RadioListTile for increase size of Radio button as below code

    ListTile(
          leading: Transform.scale(
            scale: 1.5,
            child: Radio(
              value: false,
              groupValue: 0,
              onChanged: (value) {},
            ),
          ),
          title: Text('RadioListTile'),
        ),
    

    Otherwise you have to make custom Radio button as per your requirement

    Login or Signup to reply.
  2. you could use the dense property like this:

    RadioListTile(
    dense: false, // Set to true for a smaller widget
    contentPadding: EdgeInsets.symmetric(horizontal: 24.0, vertical: 8.0), // Increase or decrease the padding as needed
    title: Text('RadioListTile'),
    value: 1,
    groupValue: 1,
    onChanged: (value) {},
    );
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search