Set Tablet orientation explicitly to all (#5049)

This commit is contained in:
Elias Nahum 2020-12-18 17:17:22 -03:00 committed by GitHub
parent be75a688de
commit 673f10770d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ import Store from '@store/store';
Navigation.setDefaultOptions({
layout: {
orientation: [DeviceTypes.IS_TABLET ? undefined : 'portrait'],
orientation: [DeviceTypes.IS_TABLET ? 'all' : 'portrait'],
},
});