Mobile Collection Lists don't allow you to dynamically set the navigation page?

I am attempting to use a a Collection list to create a dynamic list of pages that users can navigate to various pages from. (Literally just navigate to the correct page based upon what the users selects in the list.)

I assumed that I could use templating to pass the item.page value to the Navigation Trigger but the page value doesn't accept variables so that is a no go. (You can see what I am attempting in the screenshot.)

So my question is, what is the correct way to use a collection list as a navigation list? I just want to be able to list the different calculators and have each one open to the specific page for that calculator, am I overcomplicating this?

OK I think I found a solution outside of the Handler which I will leave for others who might have the same issue.
I used the script handler instead and referenced the page name navigator.navigateTo(calculatorList.selectedItem.page);
(calculatorList is the name of the list used for the List and i set up property named selectedItem.page that has the exact page name in the list array.)