GithubHelp home page GithubHelp logo

Comments (5)

thetaPC avatar thetaPC commented on April 28, 2024

Thank you for submitting the issue!

I was unable to replicate the issue using the provided code snippet in v7. It displays aligned for me:
Screenshot 2024-03-26 at 5 08 52 PM

Please provide a minimal repro in order for us to debug this issue.

from ionic-framework.

ionitron-bot avatar ionitron-bot commented on April 28, 2024

Thanks for the issue! This issue has been labeled as needs reproduction. This label is added to issues that need a code reproduction.

Please reproduce this issue in an Ionic starter application and provide a way for us to access it (GitHub repo, StackBlitz, etc). Without a reliable code reproduction, it is unlikely we will be able to resolve the issue, leading to it being closed.

If you have already provided a code snippet and are seeing this message, it is likely that the code snippet was not enough for our team to reproduce the issue.

For a guide on how to create a good reproduction, see our Contributing Guide.

from ionic-framework.

DunhamGitHub avatar DunhamGitHub commented on April 28, 2024

Thank you for your reply.
I have started a vanilla example and indeed it looks normal.
But I noticed that when ios seems to be used for themes it does not look right... (Obviously elements look different when using ios style as opposed to md style, see the header bar as an example)

Looks ok (md style):
Screenshot 2024-03-27 at 06 37 35

Does not look ok (ios style):
Screenshot 2024-03-27 at 06 39 27

Question then, if I may:

  1. What makes the ios or md style being applied?
  2. Seems the ios styling is wrong? (I can deliver my vanilla app as soon as 1. is answered)

from ionic-framework.

DunhamGitHub avatar DunhamGitHub commented on April 28, 2024

I was able to set mode="ios" to recreate the problem, in the vanilla example I created this page:

import { IonNote, IonLabel, IonListHeader, IonList, IonItem, IonButtons, IonMenuButton, IonIcon, IonButton, useIonLoading, IonContent, IonHeader, IonPage, IonTitle, IonToolbar } from '@ionic/react';
import ExploreContainer from '../components/ExploreContainer';
import {
  power,
  personAdd,
  arrowBack
} from 'ionicons/icons';



const Test_Menu: React.FC = () => {
  const [present, dismiss] = useIonLoading();
  return (
    <IonPage id="main-page">
          <IonHeader mode="ios">
            <IonToolbar mode="ios">
              <IonButtons slot="start">
                <IonMenuButton></IonMenuButton>
              </IonButtons>
              <IonTitle>Header test</IonTitle>
              <IonButton routerLink="/login" routerDirection="back" fill="clear" slot="end">
                <IonIcon slot="icon-only" icon={ power } />
              </IonButton>
            </IonToolbar> 
          </IonHeader>

          <IonContent className="ion-padding" forceOverscroll={ true }>
                <IonItem mode="ios" routerLink="/main/client-list" routerDirection="back" detail={ false }>
                  <IonListHeader mode="ios" style={{ color: '#2A5AAD' }}>
                    <IonLabel>test</IonLabel>
                  </IonListHeader>
                  <IonButton fill="clear" slot="start" >
                    <IonIcon slot="icon-only" icon={ arrowBack } />
                  </IonButton>
                </IonItem>
              
            <IonList>
              <IonItem routerLink="/main/cash" detail>
                <IonLabel>Cash</IonLabel>
                <IonNote slot="end">
                  test
                </IonNote>
              </IonItem>
            </IonList>
          </IonContent>

        </IonPage>
  );
};

export default Test_Menu;

Screenshot 2024-03-27 at 07 06 50

from ionic-framework.

thetaPC avatar thetaPC commented on April 28, 2024

After further inspection, I was able to replicate the issue. This is due to the way the code is being structured, not the mode being used. I would recommend reviewing the ion-list-header docs page, it has a great example on how to add buttons.

Screenshot 2024-03-27 at 10 38 04 AM

This is the code snippet that will align the button and the list header:

<IonList>
  <IonListHeader style={{ color: '#2A5AAD' }}>
    <IonButton fill="clear">
      <IonIcon slot="icon-only" icon={ arrowBack } />
      <IonIcon slot="icon-only" icon={ personAdd } />
    </IonButton>
    <IonLabel>Video Games</IonLabel>
  </IonListHeader>
  <IonItem>
    <IonLabel>Pokémon Yellow</IonLabel>
  </IonItem>
  <IonItem>
    <IonLabel>Mega Man X</IonLabel>
  </IonItem>
  <IonItem>
    <IonLabel>The Legend of Zelda</IonLabel>
  </IonItem>
  <IonItem>
    <IonLabel>Pac-Man</IonLabel>
  </IonItem>
  <IonItem>
    <IonLabel>Super Mario World</IonLabel>
  </IonItem>
</IonList>

There have been a lot of changes since Ionic 4 and code structures have changed. Here's an upgrade guide that might be useful to determine what those code changes can be.

I'm closing this issue since it was due to code structuring.

from ionic-framework.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.