Manson Mamaril
Manson Mamaril

Reputation: 153

Multiple questions about Nativescript + Angular2 development

I have multiple questions about development that's I find very hard to find in forums and most of the time not being noticed on chat rooms:

Please help. Thank you. :)

Upvotes: 0

Views: 102

Answers (1)

Nikolay Tsonev
Nikolay Tsonev

Reputation: 1919

In regard to your first question, you could review this angular article, where have been shown how to send parameters via angular router.

In case you want to hide the ActionBar you could set startPageActionBarHidden property to true in your main.ts For example:

main.ts

import {nativeScriptBootstrap} from "nativescript-angular/application";
import {AppComponent} from "./app.component";
import { NS_ROUTER_PROVIDERS } from "nativescript-angular/router";

nativeScriptBootstrap(AppComponent,[NS_ROUTER_PROVIDERS],{ startPageActionBarHidden: true });

About your last question, you could use vertical-align for the Label in your css file.

app.css

label{
    vertical-align: center;
}

I hope this is applicable for you. However it would help if you could give me more info about your problem.

Upvotes: 2

Related Questions