I am getting values from a modal and I want to store and get it using local storage in ionic2 angular2 project. My code is given below. It gives following error:
>
From @ionic/storage version - 2.0.0
,
make the below changes:
app.module.ts
import { IonicStorageModule } from '@ionic/storage';
//..
@ngModule({
imports: [
IonicModule.forRoot(MyApp),
HttpModule,
IonicStorageModule.forRoot(),
]
Note: you need to remove import { Storage } from '@ionic/storage';
Check release notes here