Tkko / Flutter_Pinput

Flutter package to create Pin code input text field with every pixel customization possibility 🎨 with beautiful animations, iOS autofill, Android autofill
https://pub.dev/packages/pinput
MIT License
776 stars 179 forks source link

Auto Focus not working #197

Open devbathani opened 6 hours ago

devbathani commented 6 hours ago

As in your function i have marked autofocus to true but still when i navigate to that respected page the autoFocus is not awaking the keyboard

Pinput( length: 4, defaultPinTheme: defaultPinTheme, focusedPinTheme: defaultPinTheme.copyWith( decoration: defaultPinTheme.decoration!.copyWith( border: Border.all(color: greenColor), ), ), autofocus: true, controller: authState.otpController, onCompleted: (value) {}, submittedPinTheme: defaultPinTheme, ),

Pinput version: 5.0.0