get ion-radio in the center - css

I'm currently working a privacy page in html with Ionic 3 and my output should be like this :
Right now with my code, this is what I get:
This is my code:
<ion-list radio-group [(ngModel)]="flag1">
<ion-grid item-center style="border-style: none">
<ion-row item-center style="border-style: none">
<ion-col col-4>
<ion-item style="border-style: none" item-center>
<ion-radio color="dark" [value]="true"></ion-radio>
<ion-label class="radio-text">Si</ion-label>
</ion-item>
</ion-col>
<ion-col col-4>
<ion-item style="border-style: none" item-center>
<ion-radio item-left color="dark" [value]="false"></ion-radio>
<ion-label item-center class="radio-text">No</ion-label>
</ion-item>
</ion-col>
</ion-row>
</ion-grid>
</ion-list>
and my css looks like this:
.radio-text {
font-size: 12px;
white-space: pre-line;
text-justify: auto;
display: inline-block;
}
And need as well to remove that annoying black bar, already tried with border 0 but didn't work, anyone got a solution for this?

To center add <ion-col col-2></ion-col> before radio buttons:
<ion-list radio-group [(ngModel)]="flag1">
<ion-grid item-center style="border-style: none">
<ion-row item-center style="border-style: none">
<ion-col col-2></ion-col>
<ion-col col-4>
<ion-item style="border-style: none" item-center>
<ion-radio item-left color="dark" [value]="true"></ion-radio>
<ion-label class="radio-text">Si</ion-label>
</ion-item>
</ion-col>
<ion-col col-4>
<ion-item style="border-style: none" item-center>
<ion-radio item-left color="dark" [value]="false"></ion-radio>
<ion-label class="radio-text">No</ion-label>
</ion-item>
</ion-col>
</ion-row>
</ion-grid>
</ion-list>
To style it square use:
.radio-text {
font-size: 12px;
white-space: pre-line;
text-justify: auto;
display: inline-block;
}
.radio-md .radio-icon, .radio-wp .radio-icon{
border-radius: unset !important;
}
.input-wrapper {
-webkit-flex: 0!important;
-ms-flex: 0!important;
flex: 0!important;
}
.item-md .radio-md[item-left], .item-md .radio-md[item-start] {
margin: 0!important;
}

Related

Ionic how to align ion-content to bottom of page

I'm trying to align a message input box to the bottom of the page, but I can't seem to get it working. I've tried using align-self-end and making a css class for ion-footer.
<ion-content>
<ion-footer align-self-end>
<ion-toolbar color="light">
<ion-row align-self-end>
<ion-col size="10">
<ion-textarea auto-grow class="message-input" rows="1" [(ngModel)]="message"></ion-textarea>
</ion-col>
<ion-col size="2">
<ion-button expand="block" fill="clear" color="primary" [disabled]="message === ''" class="msg-btn"
(click)="sendMessage()">
<ion-icon name="paper-plane"></ion-icon>
</ion-button>
</ion-col>
</ion-row>
</ion-toolbar>
</ion-footer>
</ion-content>
ion-footer{
display: flex;
align-items: flex-end;
margin: auto;
padding-top: .5em;
padding-bottom: .5em;
}
<ion-footer> is not meant to go inside <ion-content>
The structure of html file should be
<ion-header>
</ion-header>
<ion-content>
</ion-content>
<ion-footer>
</ion-footer>
In your case you want to show another element towards the bottom of the content, you can insert textarea like this..Do not put ion-row inside the ion-toolbar.
<ion-content>
</ion-content>
<ion-footer>
<ion-toolbar>
<ion-textarea maxRows="4" [(ngModel)]="message" placeholder="Write a message"></ion-textarea>
<ion-icon name="paper-plane" slot="end"></ion-icon>
</ion-toolbar>
</ion-footer>
another method would be
.support{
margin: auto;
position: absolute;
text-align: center;
bottom: 20px;
width: 100%;
}
<ion-content padding>
... other elements
<div class="support">
<p>some text</p>
</div>
</ion-content>

Background-image for entire Ionic (4) Page not overlapping header and footer

I am migrating my Ionic 3 project to Ionic 4 and stumbled upon a problem with a page-specific background image which worked perfectly in Ionic 3 but not in Ionic 4.
The page has a image which should cover the full page, the page however has a ion-header and ion-footer component as well.
In my Ionic 3 the html looked as following:
<ion-header [ngClass]="'no-shadow'">
<ion-navbar transparent>
<ion-buttons start>
<button ion-button icon-only menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
</ion-buttons>
</ion-navbar>
</ion-header>
<ion-content>
<ion-row class="logo-row" *ngIf="isKeyboardHidden">
<ion-col col-8 offset-2 padding text-center>
<img id="logo" src="assets/img/logo-dia-positive.png">
</ion-col>
</ion-row>
<form #f="ngForm" (ngSubmit)="onSubmit()">
<ion-row>
<ion-col>
<p style="height: 16px"></p>
</ion-col>
</ion-row>
<ion-list no-lines class="form-inputs">
<ion-item>
<ion-label icon-only>
<ion-icon name="person"></ion-icon>
</ion-label>
<ion-input
type="text"
name="username"
[(ngModel)]="account.username"
[placeholder]="'USERNAME' | translate"
required></ion-input>
</ion-item>
<ion-item>
<ion-label icon-only>
<ion-icon name="unlock"></ion-icon>
</ion-label>
<ion-input
type="password"
name="password"
[(ngModel)]="account.password"
[placeholder]="'PASSWORD' | translate"
required></ion-input>
</ion-item>
</ion-list>
<ion-row>
<ion-col col-10 offset-1>
<button
ion-button
block
[disabled]="!f.valid || isLoading">
{{'LOGIN' | translate}}
</button>
</ion-col>
</ion-row>
</form>
</ion-content>
<ion-footer *ngIf="isKeyboardHidden">
<ion-row>
<ion-col text-center>
<p class="light-gray">
<span class="bold">
<a class="default-text"
Some Footer Text
</a>
</span>
</p>
</ion-col>
</ion-row>
</ion-footer>
With the scss:
page-login {
.content {
background: url('../assets/img/background.png') no-repeat;
background-size: cover;
#logo {
padding-top: 5rem;
}
form {
position: absolute;
bottom: 0;
width: 100%;
.logo-row {
margin-bottom: 40%;
}
.form-inputs {
.label-ios {
width: 60px;
max-width: 60px;
}
}
}
}
}
The result:
In Ionic 4 the header and footer behave differently, for some reason I have to make the ion-tool bar transparent in the scss, and move both the ion-header and ion-footer within the ion-content to make the image overlap both, the scss:
ion-toolbar {
--background: transparent;
//--ion-toolbar-text-color: white;
//--ion-color-base: transparent !important;
}
ion-content {
--background: url('../../../assets/img/background.png') no-repeat center/cover fixed;
--background-size: cover;
#logo {
padding-top: 5rem;
}
form {
--position: absolute;
--bottom: 0;
--width: 100%;
// rest of scss..
}
}
The html:
<ion-content>
<ion-header no-border [ngClass]="'no-shadow'">
<ion-toolbar slot="fixed">
<ion-buttons slot="start">
<ion-menu-toggle>
<ion-button>
<ion-icon slot="icon-only" name="menu"></ion-icon>
</ion-button>
</ion-menu-toggle>
</ion-buttons>
</ion-toolbar>
</ion-header>
<ion-row class="logo-row" *ngIf="isKeyboardHidden">
<ion-col size="8" offset="2" class="ion-padding ion-text-center">
<img id="logo" src="assets/img/logo-dia-positive.png">
</ion-col>
</ion-row>
<form #f="ngForm" (ngSubmit)="onSubmit()">
<ion-row>
<ion-col>
<p style="height: 16px"></p>
</ion-col>
</ion-row>
<ion-list no-lines class="form-inputs">
<ion-item>
<ion-label>
<ion-icon slot="icon-only" name="person"></ion-icon>
</ion-label>
<ion-input
type="text"
name="username"
[(ngModel)]="account.username"
[placeholder]="'USERNAME' | translate"
required></ion-input>
</ion-item>
<ion-item>
<ion-label>
<ion-icon slot="icon-only" name="unlock"></ion-icon>
</ion-label>
<ion-input
type="password"
name="password"
[(ngModel)]="account.password"
[placeholder]="'PASSWORD' | translate"
required></ion-input>
</ion-item>
</ion-list>
<ion-row>
<ion-col size="10" offset="1">
<ion-button
block
[disabled]="!f.valid || isLoading">
{{'LOGIN' | translate}}
</ion-button>
</ion-col>
</ion-row>
</form>
<ion-footer transparent *ngIf="isKeyboardHidden">
<ion-row>
<ion-col class="ion-text-center">
<p class="light-gray">
{{'DEVELOPED_BY' | translate}}
<span class="bold">
Some Text
</span>
</p>
</ion-col>
</ion-row>
</ion-footer>
</ion-content>
This does not seem to make sense to me, there must be a way to move the ion-header and ion-footer outside of the ion-content in the html, with keeping the image overlapping both?
If I move both back out, the result looks as following, and thus wrong:
UPDATE
The proposed answer by #Sergey Rudenko works to some extend, the background image is displayed correctly but the disadvantage is that the position: absolute on the footer does not pushes the form element above the footer, instead the form element is positioned above / over the footer:
Sorry if I am not fully understanding your context, but can't you do something like this:
Template:
<ion-header style="position: absolute; left: 0; top: 0; right: 0" no-border>
<ion-toolbar>
<ion-title>
Ionic 4 template
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content>
</ion-content>
<ion-footer style="position: absolute; left: 0; bottom: 0; right: 0" no-border>
<ion-toolbar>
<ion-button expand="block">Hit Me</ion-button>
</ion-toolbar>
</ion-footer>
SCSS:
ion-toolbar {
--background: transparent;
--ion-color-base: transparent !important;
}
ion-content {
--background: url('https://via.placeholder.com/150') no-repeat center/cover fixed;
--background-size: cover;
}
ion-header, ion-footer {
border: 0px !important;
border-bottom-color: transparent !important;
background-image: none !important;
border-bottom: none !important;
}
Depending on your use case maybe not using "absolute" but "fixed" position etc?

I can't center content properly in center, how to do it?

I'm developing an Ionic 4 application, and I want to center the login in the exact middle of the page, but couldn't.
I have tried scroll content changes, grid manipulation, ion-content flexbox, etc.
The only thing that actually works is the 'text-center', which only aligns it horizontally...
How can I center all the content?
HTML
<ion-content class="border-input">
<ion-grid>
<ion-row justify-content-center>
<ion-col align-self-center size-md="6" size-lg="5" size-xs="12">
<div text-center>
<h4>Acesse o aplicativo utilizando suas credenciais</h4>
</div>
<form (ngSubmit)="entrar()" [formGroup]="formLogin">
<div>
<ion-item class="margin-025" lines="none">
<ion-list>
<label item-content for="email">
E-Mail
</label>
<ion-grid>
<ion-row>
<ion-input class="border-input" text-wrap type="text" formControlName="email" autofocus></ion-input>
<div class="margin-left-0.5" text-center align-self-center ngxErrors="email">
<div [ngxError]="['required']" [when]="['touched']">
<ion-icon text-center class="error-icon" size="large" name="close"></ion-icon>
</div>
</div>
</ion-row>
</ion-grid>
<div ngxErrors="email">
<div [ngxError]="['required']" [when]="['touched']">
<p class="alert-validation">
O E-Mail está incorreto!
</p>
</div>
</div>
</ion-list>
</ion-item>
<ion-item class="margin-025" lines="none">
<ion-list>
<label item-content for="senha">
Senha
</label>
<ion-grid>
<ion-row>
<ion-input class="border-input" text-wrap type="password" formControlName="senha"></ion-input>
<div class="margin-left-0.5" text-center align-self-center ngxErrors="senha">
<div [ngxError]="['required']" [when]="['touched']">
<ion-icon text-center class="error-icon" size="large" name="close"></ion-icon>
</div>
</div>
</ion-row>
</ion-grid>
<div ngxErrors="senha">
<div [ngxError]="['required']" [when]="['touched']">
<p class="alert-validation">
A Senha está incorreta!
</p>
</div>
</div>
</ion-list>
</ion-item>
</div>
<div>
<ion-button expand="block" color="secondary" size="25%" type="submit" [disabled]="!formLogin.valid">Entrar</ion-button>
</div>
</form>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
CSS
.select {
min-width: 90%;
max-width: 90%;
width: 90%;
}
.border-input {
border: solid 1px black;
border-radius: 5px;
}
.margin-1 {
margin: 1%;
}
.margin-025 {
margin: 0.25%;
}
.alert-validation {
color: red;
}
.error-icon {
color: red;
}
ion-input {
--padding-start: 12px !important;
}
ion-content {
display:flex;
justify-content:center;
align-items:center;
align-content:center;
}
You could use flexbox to align the div.
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

Position down all the scroll in ionic 3

I'm creating a chat and my problem is that the div that has the messages inside it I put a scroll, but I can not keep it under everything.
This is the view code and styles:
<ion-grid>
<ion-row>
<ion-col col-12>
<button ion-button block color="success" style="text-transform: none" (click)="seeMembers()">See members</button>
</ion-col>
<ion-col col-12 class="div_chat" #div_theme>
<ion-list insert>
<button ion-item>
<p>test</p>
<p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p><p>test</p>
</button>
</ion-list>
<h3 *ngIf="themeDB == false" text-center><strong>There are no new Topics</strong></h3>
</ion-col>
</ion-row>
</ion-grid>
This is my stylesheet
page-see-theme{
.div_chat{
width: 100%;
height: 300px;
overflow-y: auto;
}
}
Any idea is very useful, thanks for your help

Images not displayed on device (Ionic2 Application)

I am developing an application in Ionic2.There is a picture in the background of the rows.I also place a picture in the row.Images look fine on the browser(ionic serve).However, only background images are displayed on a real mobile device.What would be the reason.
home.html
<ion-grid>
<ion-row class="menurow">
<ion-col class="img2">
<img src="../assets/images/noun_683380_cc.png">
<h4 class="text text-center">OUR SERVICIES</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img3">
<img src="../assets/images/news.png">
<h4 class="text text-center">REFERENCES</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img4">
<img src="../assets/images/photo.png">
<h4 class="text text-center">PHOTOS</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img5">
<img src="../assets/images/video.png">
<h4 class="text text-center">VIDEOS</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img6">
<img src="../assets/images/contact.png">
<h4 class="text text-center">CONTACT</h4>
</ion-col>
</ion-row>
</ion-grid>
home.scss
.img2{
background-size: contain;
text-align: center;
background-image: url("../assets/images/photo-1471341971476-
ae15ff5dd4ea.png"),
}
.img2 img{
position: relative;
top:8px;
width: 14%;
}
.img3{
background-size: contain;
text-align: center;
background-image: url("../assets/images/ross-sokolovski-115060.png") ;
}
.img3 img{
position: relative;
top:8px;
width: 14%;
}
.img4{
background-size: contain;
text-align: center;
background-image: url("../assets/images/aron-visser-212265.png") ;
}
.img4 img{
position: relative;
top:8px;
width: 14%;
}
.img5{
background-size: contain;
text-align: center;
background-image: url("../assets/images/jakob-owens-96968.png") ;
}
.img5 img{
position: relative;
top:8px;
width: 14%;
}
.img6{
background-size: contain;
text-align: center;
background-image: url("../assets/images/d-ng-tr-n-qu-c-104959.png") ;
}
.img6 img{
position: relative;
top:8px;
width: 14%;
}
.menurow{
padding: 5px;
}
In your html, you have the incorrect relative path.
Each asset in html is retrieved from the path: './assets/'
So your file will look like:
<ion-grid>
<ion-row class="menurow">
<ion-col class="img2">
<img src="./assets/images/noun_683380_cc.png">
<h4 class="text text-center">OUR SERVICIES</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img3">
<img src="./assets/images/news.png">
<h4 class="text text-center">REFERENCES</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img4">
<img src="./assets/images/photo.png">
<h4 class="text text-center">PHOTOS</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img5">
<img src="./assets/images/video.png">
<h4 class="text text-center">VIDEOS</h4>
</ion-col>
</ion-row>
<ion-row class="menurow">
<ion-col class="img6">
<img src="./assets/images/contact.png">
<h4 class="text text-center">CONTACT</h4>
</ion-col>
</ion-row>
</ion-grid>

Resources