Here is my input-spinner setting where max value is 11. I was able to enter 55 value using Keypad.
<View style={{width: 92}}>
<InputSpinner
value={count}
style={GlobalStyle.InputSpinner}
skin="clean"
height={35}
min={0}
max={11}
continuity
maxLength={2}
editable={true}
onChange={(num) => {
setcount(num);
//alert(num);
}}
fontSize={12}
buttonFontSize={14}
colorMax={'#f04048'}
colorMin={'#42A5F5'}
/>