Flutter_Pinput
Flutter_Pinput copied to clipboard
DECORATIONS CAN NOT ACCEPT SHAPEDECORATION()
I need to use "figma_squircle" package with "pinput" package. However I can not use it because defaultPinTheme, focusedPinTheme, errorPinTheme etc. decoration can not accept ShapeDecoration(). Can you fix this problem please?
Now My Code:
I Need to Use:
Upvote for this.
I would have used
ShapeDecoration(
shape: ContinuousRectangleBorder(
borderRadius: BorderRadius.circular(8),
),
);
which does the same but without using external packages.