Ohk tnq but help me if you get any solution retarding to this. It will be much helpful.
Ionic Video Streaming
How to upload image in ionic with web api c#
You can refer this repository of mine for single image or multiple image or multiple image and other type of files in a single http request.
Video live streaming
Hey anyone suggest me helpful links for developing a ionic application for video live streaming??
Build in "prod" mode: Cannot find module "."
This works for me, Thanks @MGA93 .
“Downgrading to typescript version 2.7.2 fixed the issue for me as well”
Connect and perform READ/WRITE operation on OTG Device (Pendrive) in IONIC App
@PremAgrawal Did you find solution for your problem? I’m also looking for same scenario in my application.
Waiting for your response.
Thanks in advance.
Saving items in array and retrieving array in different page
store them in ionic storage and fetch them in another page.
Ionic 4 modal
Hello,
I was trying to create modal using ionic 4, i am getting an error
No component factory found for DetailsPagePage., Uncaught (in promise),
below is my code
search.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { Routes, RouterModule } from '@angular/router';
import { IonicModule } from '@ionic/angular';
import { SearchPage } from './search.page';
const routes: Routes = [
{
path: '',
component: SearchPage
}
];
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
RouterModule.forChild(routes),
],
declarations: [SearchPage]
})
export class SearchPageModule {}
> **and this is **search.page.ts code**
import { Component, OnInit } from '@angular/core';
import { ModalController } from '@ionic/angular';
import { DetailsPagePage } from '../details-page/details-page.page';
@Component({
selector: 'app-search',
templateUrl: './search.page.html',
styleUrls: ['./search.page.scss'],
})
export class SearchPage implements OnInit {
constructor(private modalController: ModalController) { }
ngOnInit() {
}
async openModal() {
const modal = await this.modalController.create({
component: DetailsPagePage,
});
return await modal.present();
}
}
on click of below ionic view i want to open the modal that is produt details page
<div class="custom_cards" (click)="openModal()">
<ion-item>
<ion-avatar slot="start" class="fish_image">
<img src="assets/images/fish.png">
</ion-avatar>
<ion-label>
<h3 class="dish_name">Indian Rowas</h3>
<p class="order_status">SAR 100</p>
<p class="order_date">Rating : ⭐⭐⭐⭐⭐</p>
<ion-button color="primary" size="small" fill="outline" class="add_btn">Add</ion-button>
</ion-label>
</ion-item>
</div>
please help me out…
How to push ionic content above keyboard
because you are using ion-content fixed or in css ion-content { overflow:hidden } that makes scroll off
Ionic 4 - Right way to display local PDFs in Android/IOS
i am using this package to display pdf
Displaying PDF in iframe in native
what are you seeing in android or ios ?
Ion-toast change background-color problem
Thanks @smbu! Also worked for me!
Ios app problem
Hey @michele87 show me your error log…
Linux OS for a new user
Hello users,
This question may be offtopic here, but i need your kind suggestions. I am now going to reinstall an operating system in my computer.
I had Windows 10 earlier. Now I am thinking to use Linux. I have not used it before so I have a few doubts.
Will it be difficult to use and understand Linux?
Will Linux be faster than Winodows 10?
Thank
[SOLVED] [Ionic 4] Need to know how to work the Modal Controller
Hello @razmans please help me out
Add Global Mixins on Ionic v4
Another bizarre design decision from the Ionic team that goes against the principle of least astonishment. Anyone who has used SASS before would expect the mixins they write to be globally available in the remainder of the stylesheets. I’ve just spent 30 minutes trying to simply use a mixin only to find that that doesn’t work on Ionic 4 (although it did work in Ionic 3)
Ionic 5 update is safe/stable yet or not
Is ionic 5 update safe ?
Left and right side menu together
Hi Guys,
I have some problem here
I want to create right side and left side sliding menu together which is possible by ionic 3
but feature not working on ionic 4
kindly help how to do that(left and right side sliding menu together)
Cordova-plugin-filepath: Unable to resolve filesystem path
thanx bro awesome.you save my day .
How to display image(taking with camera) on canvas (signature pad)
Hi @umeshionic1234 i’m doing same functionality as of you did before a year, can you please share me code or any references that you had used.
Ionic 4 run device error
Ionic 4 run device error
command : ionic cordova run android --device
error show:
Checking Java JDK and Android SDK versions
ANDROID_SDK_ROOT=undefined (recommended setting)
ANDROID_HOME=/Users/adisakpadungthon/Library/Android/sdk (DEPRECATED)
Requirements check failed for JDK 8 (‘1.8.*’)! Detected version: 10.0.1
Check your ANDROID_SDK_ROOT / JAVA_HOME / PATH environment variables.
[ ERROR ] An error occurred while running subprocess cordova .
How to solve problem, please help me!