We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi guys i'm getting an error when trying to register the transformer
TS2307: Cannot find module '@nativescript-community/ui-pager/transformers/Scale' or its corresponding type declarations. 14 | 15 | import { Pager } from '@nativescript-community/ui-pager'; > 16 | import transformer from '@nativescript-community/ui-pager/transformers/Scale'; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 17 | 18 | Pager.registerTransformer('scale', transformer) 19 |
The text was updated successfully, but these errors were encountered:
This works for me:
import transformer from '@nativescript-community/ui-pager/transformers/Scale.android'; Pager.registerTransformer('scale', transformer)
I haven't tested iOS but I suppose it's the same.
Cheers!
Sorry, something went wrong.
No branches or pull requests
Hi guys i'm getting an error when trying to register the transformer
The text was updated successfully, but these errors were encountered: