Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/grid layout optimisation #1

Merged
merged 80 commits into from
Oct 24, 2023
Merged

Conversation

SeanKelly369
Copy link
Owner

PR Checklist

What is the current behavior?

What is the new behavior?

Fixes/Implements/Closes #[Issue Number].

mukaschultze and others added 30 commits May 15, 2023 20:18
…cript#10286)

BREAKING CHANGES:

`Application.orientation` is no longer a function.

Migration: Remove `()` from the `Application.orientation()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.orientation());
+console.log(Application.orientation);
```


`Application.systemAppearance` is no longer a function.

Migration: Remove `()` from the `Application.systemAppearance()` call:
```diff
import { Application } from "@nativescript/core";

-console.log(Application.systemAppearance());
+console.log(Application.systemAppearance);
```
Signed off by: fossabot <badges@fossa.com>
NativeScriptError type def used to come from packages/core/global-types.d.ts now comes from packages/core/application/application-interfaces.ts, so fixed there now.
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
NathanWalker and others added 29 commits September 9, 2023 08:55
…t#10389)

Outline path is only supported on api >=33 but we can still get it to work for uniform border radius.
…dev or prod builds (NativeScript#10396)

- you can now test on development or production with testID set
- for android, this changes testID to use resource id instead of content description
- you no longer need to pass `--env.e2e`. e2e is simply usable if testID is set
- the `testID` property will also set `accessibilityIdentifier` and `accessibilityIdentifier` property will set `testID` only if there is a `testID` already set
This reverts commit 0b90182.
This reverts commit 7236808.
@SeanKelly369 SeanKelly369 merged commit 874b84f into main Oct 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet