Untitled

 avatar
unknown
plain_text
a year ago
878 B
0
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,
              ),