I'm trying to replicate this design.
SizedBox(
width: 330.w,
child: Wrap(
children: [
Transform.scale(
scale: 1.3,
child: Checkbox(
value: false,
side: const BorderSide(width: 1),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(3.r),
),
onChanged: (bool? value) {},
),
),
const Text('Nullam quis risus eget urna mollis ...'),
],
),
)
Since I want the text to wrap and flow downward, I used the Wrap
widget. But the Text
widget does not start from the same level as the checkbox. It looks like this.
Is there a different way to achieve this?