Untitled
unknown
plain_text
2 years ago
878 B
6
Indexable
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,
),Editor is loading...