I'm creating an app with internationalization which includes English and Arabic language. I'm also changing the direction from ltr to rtl while changing the language.
At first, when I run the application on Android with default language as English the flickering is not there. When I change the language the flickering starts. This issue is also there when I change from English to Arabic. I have tried many solutions but no avail. Is there any fix for this.
this issue is on Android and iOS
@NgModule({
declarations: [
MyApp,
pages
],
imports: [
IonicModule.forRoot(MyApp, {
canDisableScroll: false,
platforms: {
ios: {
// These options are available in ionic-angular@2.0.0-beta.2 and up.
scrollAssist: false, // Valid options appear to be [true, false]
autoFocusAssist: false // Valid options appear to be ['instant', 'delay', false]
}
},
scrollAssist: true, autoFocusAssist: true
}),
modules
],
bootstrap: [IonicApp],
entryComponents: [
MyApp,
pages
],
providers: [
provider_plugins,
Helper,
{
provide: HTTP_INTERCEPTORS,
useClass: MyHttpInterceptor,
multi: true
},
{ provide: ErrorHandler, useClass: IonicErrorHandler }]
})
export class AppModule { }
Original issue by @mdashiff on 2018-03-19T08:30:40Z
Ionic version: (check one with "x") [ ] 1.x (For Ionic 1.x issues, please use https://github.com/ionic-team/ionic-v1) [ ] 2.x [ ] 3.x**
I'm creating an app with internationalization which includes English and Arabic language. I'm also changing the direction from ltr to rtl while changing the language.
At first, when I run the application on Android with default language as English the flickering is not there. When I change the language the flickering starts. This issue is also there when I change from English to Arabic. I have tried many solutions but no avail. Is there any fix for this.
this issue is on Android and iOS
config.xml