Navigation Not working in winJS - microsoft-metro

Navigation Not working in winJS
I am trying to call a navigation on a button click.But its not working
WinJS.Navigation.navigate("Views/Login/Login.html",null);

Are you using the proper winjs navigation page control to setup your page control container to accept single page navigation?
http://msdn.microsoft.com/en-us/library/windows/apps/hh452768.aspx

Related

Nested navigation with flow_builder in Flutter

Good day! I wanted to implement navigation in my app with flow_builder package. I have bottom navigation bar with several tabs in it and inside each of the tab's route I have several nested routes. I have made a small example application and I have a problem with tab transitions, namely if you navigate to a route within a tab and try to change tab again the navigation stack changes very strangely. Am I using this package properly and is it even possible to implement such navigation with it? My sample app
[Edit]
I have nested FlowBuilder() inside each tab and now everything seems to work fine. However, I am not sure whether it is appropriate solution.

Flutter: Unable to go to login view from a persistent bottom nav bar based view

I have a persistent bottom nav bar based on this plugin.
The plugin allows building a page with few footer buttons and navigation etc. But, Once such a page has a logout button that must send the user back to Login view (outside of navbar) and I am stuck here. I've permuted with all the navigator operations available and am stuck here, unable to show a page without the bottom navbar appearing.
Any help is much appreciated! :)

Need an ideal way to handle tab bar in app

I want to create an app where there is a login screen, and when user logs in open up home page with tab bar controller.
I have created a single view application and have created login screen, home screen and a tab bar on it.
In tab bar delegate, I am adding screens to tab bar by [self.view addSubView firstView.view]
My problem is if I open up 4th tab, and switch to 2nd tab and I have to go back to home screen, so I press home btw on nav bar, it shows view 4 which is already on stack of uiviews.
How do I switch between all tab bar views and add navigation to them ? Which ideal method is to be used?
I've created app that is doing what you need (I guess). You can find it in app store for iphone using name Torchoo. It is free and there is test account so you can see how it works and if its really what you need. If yes, ping me here I will show you the sources and how I did it.
In couple of words, you need normal tabbar controller that has number of navigation controllers and each of them has number of view controllers. And login screen is just a modal view that shows/hides when you need it. Most of things may be done in storyboard.
I don't get it actually but i think you want to attach all the view by navigation controller.
But it's useless. if you want to use navigation bar then it ll navigate in another view but tabbar will give you different views on every tab.
so, first see the use of both of them then ask....

How to set button on navigationbar in tabbased application?

I am working on a project which involves both kind of applications ie Navigation based and Tab based. All things are working perfectly. But what I want is, when I click on a particular tab then a button must be added to the navigation bar at the top to edit the table below it. I am able to draw the button but it is not affecting the tableview below it. When I do this in navigation based application it works perfectly. But it does not work in tab based.
So please tell me the way to add button at navigation bar in UI tab based application which appear only at particular tab.
tell me the sample code or any tutorial for it.
For each tab embed a UINavigationConrtoller, and your own view controllers in them.
This way each tab will have its own navigation bar, and thus can have their own sets of bar items, titles, etc.
You generally never want to embed a UITabBarController in a UINavigationController, always the other way around.

iPhone Custom Page control buttons

Is it possible to control a page controller with custom buttons instead of the Page control dots? Similar to a jQuery slider in js?
What do you mean by "page controller"? There is no such thing in the iPhone SDK. UIPageControl is a very dumb control that has no connection to the scroll view whose page it usually displays. The developer has to manually keep them in sync. So it is no problem at all to use your own custom page control view and manually sync it with a scroll view.