-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Hide the Skip button #188
Comments
Hello. |
You can achieve that by setting your own tooltip component |
A dirty, quick, lazy way is to set "skip" property to a space. The button is still there, but users will unlikely press it.
|
As there is no props, so according to me just comment the lines from luibrary which is responsible for this skip button. To do this follow the steps below:-
comment out this line:- {!isLastStep ? <import_react_native3.TouchableOpacity onPress={handleStop}>{labels.skip}</import_react_native3.TouchableOpacity> : null}
labels = {
|
can be achieved with customizing the labels:
|
Is your feature request related to a problem? Please describe.
My new user experience is very important and I don't want it to be skippable, so I'd like to hide the skip button in the default tooltip.
Describe the solution you'd like
Add a parameter to copilot() to hide the skip button. Drawback is it's another parameter to think about.
Describe alternatives you've considered
I've tried making the translation string to an empty string, but any falsy value is ignored.
Teachability, Documentation, Adoption, Migration Strategy
copilot({ allowSkip: true})
The text was updated successfully, but these errors were encountered: