Skip to content

Commit

Permalink
Add cta image
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-sneha-s committed Feb 27, 2024
1 parent 990900f commit 8ad7e6d
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions example/lib/utils/item_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,11 @@ class _ItemTileState extends State<ItemTile> {
borderRadius: BorderRadius.circular(10),
color: Colors.primaries[widget.index % Colors.primaries.length],
),
child: Row(
children: [
Center(
child: Text(
'Item ${widget.index}',
style: const TextStyle(fontSize: 25),
),
),
Checkbox(value: false, onChanged: (value){})
],
child: Center(
child: Text(
'Item ${widget.index}',
style: const TextStyle(fontSize: 25),
),
),
),
const SizedBox(
Expand Down

0 comments on commit 8ad7e6d

Please sign in to comment.