I'm a beginner and trying to add 3 buttons horizontally I have added but they don't contain "match parent" like in android.
my code
Row(
mainAxisAlignment:MainAxisAlignment.spaceBetween,
children: [
ElevatedButton(onPressed: () {}, child: const Text("Male")),
ElevatedButton(onPressed: () {}, child: const Text("Female")),
ElevatedButton(onPressed: () {}, child: const Text("Other")),
],
),
you can view the image image