Untitled
TextField( keyboardType: TextInputType.emailAddress, textAlign: TextAlign.center, onChanged: (value) { email = value; }, decoration: kTextFieldDecoration.copyWith( hintText: 'Masukkan email anda', ), ), SizedBox( height: 10, ), //password TextField( obscureText: true, textAlign: TextAlign.center, onChanged: (value) { password = value; }, decoration: kTextFieldDecoration.copyWith( hintText: 'Masukkan password', ), ), SizedBox( height: 10, ),