I am using an imported PinPut Flutter package and I am trying to fix the overflowed pinput on the right. I have tried setting the eachFieldWidth and eachFieldHeight to the smallest value but it doesn't make any difference.
return PinPut(
fieldsCount: 6,
textStyle: const TextStyle(fontSize: 25.0),
eachFieldWidth: 40.0,
eachFieldHeight: 40.0,
focusNode: _pinPutFocusNode,
controller: _pinPutController,
submittedFieldDecoration: pinPutDecoration,
selectedFieldDecoration: pinPutDecoration,
followingFieldDecoration: pinPutDecoration,
pinAnimationType: PinAnimationType.fade,}