Hey there.
I'm trying to add a payment option to my Web app to request a payment method to the user and authorize the payment only (not capturing) in Stripe. With the built-in Stripe action this isn't possible because by default, the payment is captured immediately.
So I tried with a custom action that would show the Stripe Sheet which would trigger a confirmation on a previous payment created by calling Strupe from an edge function. But the library I'm using (flutter_stripe_web) gives an error.
I know I may be complicating things too much. Has anyone dealt with this use case (generating a payment in Stripe but only authorizing it. From FF). And did you solve it?