How to add Border to CheckboxListTile in Flutter

The CheckboxListTile is a useful widget to add checkbox with text and icon. In this blog post, let’s learn how to add the CheckboxListTile border in Flutter. The CheckboxListTile has many properties for customization. Using the shape property you can add a border, change the border color and even adjust the border radius. See the…

How to set CheckboxListTile Background Color in Flutter

The CheckboxListTile widget in Flutter is a mix of the Checkbox and the ListTile widgets. In this blog post, let’s learn how to change CheckboxListTile background color in Flutter. The CheckboxList widget has some useful properties for customization. We use the tileColor property to change the background color of the tile. See the code snippet…

How to position CheckboxListTile Checkbox to Left in Flutter

The CheckboxListTile widget in Flutter helps to display checkboxes on a tile with text, icons, etc. In this blog post, let’s learn how to bring the CheckboxListTile checkbox to the left in Flutter. By default, the checkbox of the CheckboxListTile widget appears at the right. You can change the position of the checkbox using the…