Build The Biografy of Sultan Iskandar Muda Mobile Application with Ionic Framework [Part 2]steemCreated with Sketch.

in #utopian-io5 years ago (edited)

Repository

[Ionic Repository](https://github.com/ionic-team/ionic)


 What Will I Learn?

  • You will learn How to add & style image avatar
  •  You will learn How To Add Entry List to Side Menu
  •  You will learn How To Use The Navigation NavParams Ionic


Requirements


Difficulty

  •  Intermediate


 Tutorial Contents

Today, I will show how to learn components & make  a biographical application of an important figure using the Ionic Framework. 

To follow this tutorial you also have to follow the previous tutorial [Part 1](https://steemit.com/utopian-io/@anitatmj/build-the-biografy-of-sultan-iskandar-muda-mobile-application-with-ionic-framework-part-1)


#Step by Step :

1. Open your project beforehand and get ready to add some components to our mobile application.

2. Today I will add an avatar image to the header of the side menu page.

3. open code editor and then open app.html (from directory src/app)


4. add this code for app.html

<ion-menu [content]="mainContent">

  <ion-header class="headsidemenu">

  <p class="p_header">Developer By Anita</p>

  //dont forget to put your image to this path assets/img/yourimage

  <img class="i" src="assets/img/avatar.jpg">

  </ion-header>

  <ion-content>

  

    <ion-list >

      <ion-item color="positive" menuClose="" on-click="goToHome()">

        <ion-icon name="md-home" item-left></ion-icon>

        Biografy

      </ion-item>

      <ion-item color="family" menuClose="" on-click="goToFamilytreePage()">

        Family Tree of Sultan Iskandar Muda

        <ion-icon name="md-paper" item-left></ion-icon>

      </ion-item>

      </ion-list >

  </ion-content>


for app.css


.i{

"width: 25%; 

height: 50%;  

align-content: center; 

display:block; margin:auto;"

}


result :



Next I will show you how to use NavParams to navigate between pages. First, make on-click fungction first so you can move to another page.


this code to app.html

<ion-item color="family" menuClose="" on-click="goToFamilytreePage()">

        Family Tree of Sultan Iskandar Muda

       <ion-icon name="md-paper" item-left></ion-icon>

      </ion-item>


 Now import Nav controller to app.component.ts and put Navparams to fungction. This complete code :


import { Component, ViewChild } from '@angular/core';

import { Platform, Nav } from 'ionic-angular';

import { StatusBar } from '@ionic-native/status-bar';

import { SplashScreen } from '@ionic-native/splash-screen';

import { HomePage } from '../pages/home/home';

import { FamilytreePage } from '../pages/familytree/familytree';


@Component({

  templateUrl: 'app.html'

})

export class MyApp {

  @ViewChild(Nav) navCtrl: Nav;

    rootPage:any = HomePage;


  constructor(platform: Platform,statusBar: StatusBar, splashScreen: SplashScreen) {

    platform.ready().then(() => {

      statusBar.styleDefault();

      splashScreen.hide();

    });

  }


goToHome(params){

    if (!params) params = {};

    this.navCtrl.setRoot(HomePage);

  }


goToFamilytreePage(params){

    if (!params) params = {};

    this.navCtrl.setRoot(FamilytreePage);

  }

}


Result Video :


Curriculum

You can read and follow this tutorial about Ionic Framework

[Build The Biografy of Sultan Iskandar Muda Mobile Application with Ionic Framework [Part 1]](https://steemit.com/utopian-io/@anitatmj/build-the-biografy-of-sultan-iskandar-muda-mobile-application-with-ionic-framework-part-1)

 [Build A Simple CV Mobile Application with Ionic Framework (Part 1 of 3)](https://steemit.com/utopian-io/@anitatmj/build-a-simple-curriculum-vitae-mobile-application-with-ionic-framework-in-3-days-part-1-of-3)

 [Build A Moile Application with Ionic Creator](https://steemit.com/utopian-io/@anitatmj/make-a-mobile-application-with-ionic-creator-fast-and-easy)


Proof of Work Done

You can get this Project on my github : [app_biografy_sultan_iskandar_muda](https://github.com/anitatmj/biografy_app)

Thank you to Following my tutorial about ionic framework if you have a problem about following this tutorial please contact me or comment here.


Sort:  

I thank you for your contribution. Here are my thoughts. Note that, my thoughts are my personal ideas on your post and they are not directly related to the review and scoring unlike the answers I gave in the questionnaire;

  • Structure

    • Structure of your post is too messy. It is advised to structure the post depending on their category.
  • Language

    • Language of the post makes it harder to understand. I advise you to proofread your posts before posting to increase learning efficiency.
  • Content

    • Content is somewhat misleading. What you are showing in this tutorial is how to make a demo Ionic Application. But, you promote it with its demo context, which is "Sultan Iskandar Muda". I suggest you change your approach to this topic.

    • The tutorial is considered as "copy & paste this code". In general, tutorials are expected to teach "why", not "how". So, in that case; I advise you to improve your next tutorials to teach "why" instead of simply showing "how".


Your contribution has been evaluated according to Utopian policies and guidelines, as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, click here.


Need help? Chat with us on Discord.

[utopian-moderator]

Thank you for your review, @yokunjon! Keep up the good work!

may I please ask if you do freelancing as well. I may have open task requests that are utopianbased and with steem bounty. do you have a discord contact? framework is react. I am surpassinggoogle#1660 on discord

Congratulations @anitatmj! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

You published more than 20 posts. Your next target is to reach 30 posts.

Click here to view your Board
If you no longer want to receive notifications, reply to this comment with the word STOP

To support your work, I also upvoted your post!

Support SteemitBoard's project! Vote for its witness and get one more award!

Coin Marketplace

STEEM 0.28
TRX 0.11
JST 0.035
BTC 67029.87
ETH 3217.40
USDT 1.00
SBD 4.08