Skip to content
This repository was archived by the owner on Aug 30, 2019. It is now read-only.
This repository was archived by the owner on Aug 30, 2019. It is now read-only.

Inclusion breaks standard iOS styling #78

@csvan

Description

@csvan

Currently, merely including this project (i.e. without enabling the platform override) causes iOS styling to break completely.

brokencross

Code for the above is below, everything is a standard Ionic Tabs starter project with ionic-mdl included.

<ion-view view-title="Login">

  <ion-content class="padding">

    <form name="authorizationForm" novalidate="" ng-submit="signIn()">

      <div class="list">

        <label class="item item-input">
          <span class="input-label">Username</span>
          <input type="text" name="username" ng-model="authorization.username" required>
        </label>

        <div class="error-container" ng-show="authorizationForm.username.$error"
             ng-messages="authorizationForm.username.$error">
          <div class="error" ng-message="required">
            <i class="ion-information-circled"></i>
            This field is required!
          </div>
        </div>

        <label class="item item-input">
          <span class="input-label">Password</span>
          <input type="password" name="password" ng-model="authorization.password" required>
        </label>

        <div class="error-container last-error-container"
             ng-show="authorizationForm.password.$error && authorizationForm.$submitted"
             ng-messages="authorizationForm.password.$error">
          <div ng-messages-include="error-list.html"></div>
        </div>

      </div>

      <button class="button button-full button-positive" type="submit">
        Sign In
      </button>

    </form>

  </ion-content>

</ion-view>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions