diff --git a/lib/pages/user/modify/modify_user_information_page.dart b/lib/pages/user/modify/modify_user_information_page.dart index a4c1ae0..84ad26a 100644 --- a/lib/pages/user/modify/modify_user_information_page.dart +++ b/lib/pages/user/modify/modify_user_information_page.dart @@ -101,21 +101,27 @@ class ModifyUserInformationPage extends StatelessWidget { if (type == ModifyUserInformationType.gender) { return Row( children: [ - RadioListTile( - title: const Text('男'), - value: 0, - groupValue: type, - onChanged: (value) { - Log.d('男value = $value'); - }, + SizedBox( + width: 150, + child: RadioListTile( + title: const Text('男'), + value: 0, + groupValue: type, + onChanged: (value) { + Log.d('男value = $value'); + }, + ), ), - RadioListTile( - title: const Text('女'), - value: 1, - groupValue: type, - onChanged: (value) { - Log.d('女value = $value'); - }, + SizedBox( + width: 150, + child: RadioListTile( + title: const Text('女'), + value: 1, + groupValue: type, + onChanged: (value) { + Log.d('女value = $value'); + }, + ), ), ], );