Sure, thanks for your help !
App Module :
import { ShareModule } from './share/share.module';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouteReuseStrategy } from '@angular/router';
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
@NgModule({
declarations: [AppComponent],
entryComponents: [],
imports: [ BrowserModule, ShareModule.forRoot(), IonicModule.forRoot(), AppRoutingModule ],
providers: [
StatusBar,
SplashScreen,
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule {}
Service :
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class GeneService {
uid;
new;
constructor() {
this.uid = Date.now()
}
}
homepage :
import { GeneService } from './../gene.service';
import { Component } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
constructor(public _g: GeneService){
this._g.new = 'bonjour';
}
}
test page :
import { GeneService } from './../gene.service';
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.page.html',
styleUrls: ['./test.page.scss'],
})
export class TestPage implements OnInit {
constructor(
public _gen: GeneService
) {
console.log(_gen.new);
}
ngOnInit() {
}
}
I tried the approach of a shared service module :
import { NgModule, ModuleWithProviders, Optional, SkipSelf } from '@angular/core';
import { GeneService } from './../gene.service';
@NgModule({})
export class ShareModule {
constructor (@Optional() @SkipSelf() parentModule: ShareModule) {
if (parentModule) {
throw new Error(
'CoreModule is already loaded. Import it in the AppModule only');
}
}
static forRoot(): ModuleWithProviders{
return {
ngModule: ShareModule,
providers: [ GeneService ]
};
}
}
I’ve tried everything but everytime I get the same, the first page init the variable new with bonjour, but the other page doesn’t get the new value and the date number is a new one … I’m desperate to know what I do wrong 
Thanks again !