Как обнаружить ОТП текст в флаттере текстового поля - PullRequest
0 голосов
/ 07 мая 2019

Как я могу сделать автоматическое обнаружение OTP-текста моего текстового поля во флаттере. Я не получаю ничего подходящего.Спасибо в andvance.

 Center(
              child: Padding(
                padding: const EdgeInsets.only(top: 10.0),
                child:TextField(
                  controller: otpController,
                  maxLength: 6,
                  maxLengthEnforced: true,
                  textAlign: TextAlign.center,
                  decoration: InputDecoration(
                    border: InputBorder.none,
                    hintText: "_ _ _ _ _ _",
                    hintStyle: new TextStyle(
                      fontWeight: FontWeight.bold
                    )

//          border:
//          OutlineInputBorder(borderRadius: BorderRadius.circular(32.0))
                  ),
                  style: new TextStyle(
                    color: Colors.black,
                    fontWeight: FontWeight.bold,
                    fontSize: 22.0,
                  ),
                ),
              ),
            ),
...