-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
I can not remove my actionbar in my component... #4934
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello @phantoxe To remove the default ActionBar from your page you can use For example:
|
@NickIliev instead of doing this for every component what is an alternative approach to removing the ActionBar from my entire app? I saw things like setting If I set |
@d4rkd0s - any joy with this? I have the same issue of not wanting to set Additionally, |
@decmurphy Yeah I'm still having to deal with this. However a recent possible solution was posted over on this issue: NativeScript/nativescript-angular#353 (comment)
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Hi guy... i just have this code in my component:
login.component.html
But every time that i run TNS RUN ANDROID... my app have a ACTIONBAR with the name of my APP... :-( I want create a simples LOGIN PAGE. Check my routes:
app-routing.module.ts
const routes: Routes = [
{ path: "", redirectTo: "/login", pathMatch: "full" },
{ path: "login", loadChildren: "./login/login.module#LoginModule" },
{ path: "profile", loadChildren: "./profile/profile.module#ProfileModule" },
{ path: "photos", loadChildren: "./photos/photos.module#PhotosModule" },
{ path: "videos", loadChildren: "./videos/videos.module#VideosModule" },
{ path: "reviews", loadChildren: "./reviews/reviews.module#ReviewsModule" },
{ path: "settings", loadChildren: "./settings/settings.module#SettingsModule" }
];
Can u help me please?
The text was updated successfully, but these errors were encountered: