Closed
Description
Version
2.4.0
Reproduction link
https://play.nativescript.org/
Platform and OS info
Android 9 / Nativescript 6.2.0 / macOS 10.15
Steps to reproduce
I'm trying to use $navigateTo() but I get this line logged in the console when I @tap on my element :
JS: 'getFrameById() is deprecated. Use Frame.getFrameById() instead.'
What is expected?
Navigate to the other page
What is actually happening?
getting this line in the console and nothing happens:
JS: 'getFrameById() is deprecated. Use Frame.getFrameById() instead.'
here is my method:
goToDetailPage() {
this.$navigateTo(MarketDetails, {
animated: true,
transition: {
name: "slide",
curve: "ease"
},
props: { item: this.item, index: this.index }
});
},