How to set scrollAssist in single page?

Hey there! I want to disable scrollAssist in single page, the code is :slight_smile:

	ionViewWillEnter() {
		super.ionViewWillEnter();

		this.config.set('scrollAssist', false);
		this.config.set('scrollPadding', false);
		this.config.set('autoFocusAssist', false);
		console.log(this.config.get('scrollAssist'));

	}

	ionViewWillLeave() {
		super.ionViewWillLeave();
		this.config.set('scrollAssist', true);
		this.config.set('scrollPadding', true);
		this.config.set('autoFocusAssist', true);
		console.log(this.config.get('scrollAssist'));
	}

Now the value is false when ionViewWillEnter, but the page scroll up when keyboard show, so how to disable this “scroll up”, please help.

Did you ever manage to make this work @gulullu?

Looking for a solution to this too

Did you found solution for this?