titik peluru flutter
Add "\u2022" infront of String
Lazurite
Add "\u2022" infront of String
Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Transform.translate(
offset: const Offset(0, -8),
child: const Text(
'•',
style: TextStyle(fontSize: 30),
),
),
const SizedBox(width: kSizeSmall),
Expanded(
child: Text(
title,
style: context.textTheme.bodyText1,
),
),
],
);