We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e7970 commit cbb348fCopy full SHA for cbb348f
2 files changed
packages/core/ui/core/view/index.android.ts
@@ -1806,7 +1806,7 @@ export class ContainerView extends View {
1806
1807
constructor() {
1808
super();
1809
- this.androidOverflowEdge = 'none';
+ this.androidOverflowEdge = 'ignore';
1810
}
1811
1812
packages/core/ui/page/index.android.ts
@@ -13,6 +13,11 @@ export * from './page-common';
13
export class Page extends PageBase {
14
nativeViewProtected: org.nativescript.widgets.GridLayout;
15
16
+ constructor() {
17
+ super();
18
+ this.androidOverflowEdge = 'none';
19
+ }
20
+
21
public createNativeView() {
22
const layout = new org.nativescript.widgets.GridLayout(this._context);
23
layout.addRowsFromJSON(
0 commit comments