Removing Users from app

How do I remove users temporarily or block their access to the app? I’m creating a paid subscription and I want to be able to stop app access when payments are not made.

Use a boolean in the user collection “IsPaidUp” or whatever.
Then on your home screen, bounce them to a paywall if the’yr subscription isn’t valid.

Or instead of boolean use a text string then store the actual subscription status from Stripe, bounce the user to different sequence of screens based on their status (trial, active, etc…)