style: code format

This commit is contained in:
JingChiang 2024-09-08 21:32:52 +08:00
parent 00ec7d262f
commit 399f880054

View File

@ -14,13 +14,11 @@ class PersonalInfo extends StatefulWidget {
}
class _PersonalInfoState extends State<PersonalInfo> {
String _name = '',
_phone = '',
_gender = '',
_address = '',
_email = '',
_password = '';
String _name = '', _phone = '', _gender = '', _address = '', _email = '', _password = '';
bool _isEditing = false; //
bool _passwordNotVisible = true;
final TextEditingController _nameController = TextEditingController();
final TextEditingController _phoneController = TextEditingController();
final TextEditingController _genderController = TextEditingController();
@ -158,8 +156,6 @@ class _PersonalInfoState extends State<PersonalInfo> {
));
}
//
//
@override
Widget build(BuildContext context) {