You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I like your work. I appreciate this nice library.
I'd like to report an issue. I have an issue using NavigationDrawerController.
When I make transition from NavigationDrawerController with method transition(to:duration:options:animations:compeltion:), screen-sized black view comes up to front and cover entire screen. Please see screenshot below.
I tried to debug with Xcode, and I think that black view is contentViewController's view of NavigationDrawerController. In RootController's transition method, it puts new root-view-controller's view back in RootController, behind contentViewController's view.
I'm using Xcode 8.1, and tested in iPhone Simulator 7 Plus
the version of Material I used is 2.3.6
This is some of setting code in test application.
I made view controllers in main.storyboard, and instantiated them in AppDelegate.
// in AppDelegate.swift
func application(_ application:UIApplication, didFinishLaunchingWithOptions launchOptions:[UIApplicationLaunchOptionsKey:Any]?)->Bool{
// Override point for customization after application launch.
letorangeViewController=UIStoryboard(name:"Main", bundle:nil).instantiateInitialViewController()as!OrangeViewControllerletleftDrawerController=UIStoryboard(name:"Main", bundle:nil).instantiateViewController(withIdentifier:"LeftDrawerController")as!LeftDrawerControllerletrightViewController=UIStoryboard(name:"Main", bundle:nil).instantiateViewController(withIdentifier:"RightViewController")as!RightViewControllerletrootController=NavigationDrawerController(rootViewController: orangeViewController, leftViewController: leftDrawerController, rightViewController: rightViewController)letwindow=UIWindow(frame:UIScreen.main.bounds)
window.rootViewController = rootController
window.makeKeyAndVisible()self.window = window
self.rootController = rootController
returntrue}
Hi. I like your work. I appreciate this nice library.
I'd like to report an issue. I have an issue using NavigationDrawerController.
When I make transition from NavigationDrawerController with method
transition(to:duration:options:animations:compeltion:)
, screen-sized black view comes up to front and cover entire screen. Please see screenshot below.I tried to debug with Xcode, and I think that black view is contentViewController's view of NavigationDrawerController. In RootController's transition method, it puts new root-view-controller's view back in RootController, behind contentViewController's view.
I'm using Xcode 8.1, and tested in iPhone Simulator 7 Plus
the version of Material I used is 2.3.6
This is some of setting code in test application.
I made view controllers in main.storyboard, and instantiated them in AppDelegate.
Thanks!
The text was updated successfully, but these errors were encountered: