Flutter_Pinput icon indicating copy to clipboard operation
Flutter_Pinput copied to clipboard

postFilledWidget parameter feature

Open mg3994 opened this issue 8 months ago • 0 comments

Is your feature request related to a problem? Please describe. I was Trying to add a small Grey Colored bar at bottom like =>

Column( //like preFilledWidget
      mainAxisAlignment: MainAxisAlignment.end,
      children: [
        Container(
          width: 56,
          height: 3,
          decoration: BoxDecoration(
            color: Colors.grey[100],
            borderRadius: BorderRadius.circular(8),
          ),
        ),
      ],
    )

with the help of submittedPinTheme but , but i doesn't found any method to do so

Describe the solution you'd like Add a Extra Parameter for postFilledWidget , so that we can align a bar at bottom even after submitted Pin Field / ...many more

Describe alternatives you've considered or else you can change the Data type of BoxDecoration? decoration, in PinTheme

Additional context None

mg3994 avatar Nov 04 '23 05:11 mg3994