How to get back side menu after $state.go

I am quite new and facing problem after successful login i am redirecting back user to home controller but problem is that view renders but side-menu is not show. how to handle that.

.controller(‘LoginCtrl’,function($scope,$rootScope,$location,$state){
$scope.loginData = {
username:’’,
password:’’
};
$scope.login = function() {
if ($scope.loginData.username == ‘hassaan’ && $scope.loginData.password == ‘khan’) {
$rootScope.showLogin = false;
//$location.path(’/app/home’);
$state.go(‘app.home’);
}else{
alert(‘Incorrect credentials’);
}
}
});

and

$stateProvider

.state(‘app’, {
url: “/app”,
cache:false,
abstract: true,
templateUrl: “templates/menu.html”,
controller: ‘AppCtrl’
})
.state(‘app.login’, {
url: “/login”,
cache:false,
views: {
‘menuContent’: {
templateUrl: “templates/login.html”,
controller: “LoginCtrl”
}
}
})
.state(‘app.home’, {
url: “/home”,
cache:false,
views: {
‘menuContent’: {
templateUrl: “templates/home.html”,
controller: “HomeCtrl”
}
}
});

Look within your set to true and you should be fien