Wednesday 13 December 2017

Part 18 pushing page in ionic







in this video, I will show you that how you can push the page, or navigate from one page to another page using push component of navController,

Directive to declaratively push a new page to the current nav stack.

navPush is navigation component in ionic where user can navigate one page to other page.

Navigation is how users move between different pages in your app. Ionic’s navigation follows standard native navigation concepts, like those in iOS. In order to enable native-like navigation, we’ve built a few new navigation components that might feel different for developers used to traditional desktop browser navigation.



First generate new page

To generate page we will use command ionic g page pagename

After that register it to the app.module.ts file.





first import the page where to navigate

import {Pages} from '../pages/pages';



then inside contractor write this code.



this.navCtrl.push(Pages);





Command Description

build Build web assets and prepare your app for any platform targets

docs Open the Ionic documentation website

generate Generate pipes, components, pages, directives, providers, and tabs (ionic-angular = 3.0.0)

info Print system/environment info

link Connect your local app to Ionic

login Login with your Ionic ID

serve Start a local dev server for app dev/testing

signup Create an Ionic account

start Create a new project

telemetry (deprecated) Opt in and out of telemetry

upload (deprecated) Upload a new snapshot of your app

config get Print config values

config set Set config values

cordova build Build (prepare + compile) an Ionic project for a given platform

cordova compile Compile native platform code

cordova emulate Emulate an Ionic project on a simulator or emulator

cordova platform Manage Cordova platform targets

cordova plugin Manage Cordova plugins

cordova prepare Copies assets to Cordova platforms, preparing them for native builds

cordova requirements Checks and print out all the requirements for platforms

cordova resources Automatically create icon and splash screen resources

cordova run Run an Ionic project on a connected device

doctor check Check the health of your Ionic project

doctor ignore Ignore a particular issue

doctor list List all issue identifiers

git remote Adds/updates the Ionic git remote to your local Ionic app repository

integrations disable Disable an integration

integrations enable Add various integrations to your app

monitoring syncmaps Sync Source Maps to Ionic Pro Error Monitoring service

package build (deprecated) Start a package build

package download (deprecated) Download your packaged app

package info (deprecated) Get info about a build

package list (deprecated) List your cloud builds

ssh add Add an SSH public key to Ionic

ssh delete Delete an SSH public key from Ionic

ssh generate Generates a private and public SSH key pair

ssh list List your SSH public keys on Ionic

ssh setup Setup your Ionic SSH keys automatically

ssh use Set your active Ionic SSH key

====================================================

to download full source code and presentation visit our wesite and Blog



website : - http://dotnetlab.in/

source code : - https://github.com/rahuljograna

facebook page :- https://www.facebook.com/DotnetLab-1896440207343189/

visit my blog : - http://aspnetinhindi.blogspot.in

follow me on twitter : https://twitter.com/THEJOGRANA


No comments:

Post a Comment

Part 20 consuming rest api in ionic

in this video, I will show you that how you can consume the rest API. in the previous video we have implemented the asp.net web API projec...