10 Commits

Author SHA1 Message Date
56a3f9bd3c fix: prevent error if navigationTransition is null or undefined 2021-03-12 21:29:31 +01:00
b80b37a939 Merge branch 'master' of github.com:NativeScript/NativeScript
# Conflicts:
#	.gitignore
#	package.json
2021-03-08 17:30:57 +01:00
ac7f041dea fix(core): AndroidTransitionType symbol export handling (#9252)
BREAKING CHANGE:

AndroidTransitionType is now a static member of the Transition class.

BEFORE:

```
import { AndroidTransitionType } from '@nativescript/core/ui/transition';
```

AFTER:

```
import { Transition } from '@nativescript/core';
Transition.AndroidTransitionType.enter; // etc.
```
2021-02-27 13:16:39 -08:00
a4d7674aba fix(android): rewrote the transition system
to allow it work correctly with GLSurfaceView and GLTextureView
2021-02-20 21:28:27 +01:00
5f8d3d03f7 fix(android-transitions): remove hard-coded flip transition duration/curve (#8851) 2020-09-16 08:22:12 +02:00
6729bfbbb0 clean up log 2020-09-09 15:12:47 +02:00
be15327dcc typo fix 2020-08-27 09:25:39 +02:00
b127f12bbb another try at fixing transitions 2020-08-27 09:25:01 +02:00
582f5fa6eb dont use replace transaction anymore.
That way we dont “unload” and “load” fragments.
This fixes black screens and slow transitions with opengl or cameras

# Conflicts:
#	packages/core/ui/frame/fragment.transitions.android.ts
#	packages/core/ui/frame/frame-common.ts
#	packages/core/ui/frame/index.android.ts
2020-08-27 09:24:25 +02:00
020ad4da37 chore(core): monorepo, esm targeting, improved management (#8707) 2020-08-25 20:00:59 -07:00