Vitaliy Potapov

Results 102 comments of Vitaliy Potapov

Thanks @mehcode ! I think we can go the same scale-only way.

> Do I need to install anything beyond "react-native-extended-stylesheet" to get the types as I have them with StyleSheet? No. Types are included in [index.d.ts](https://github.com/vitalets/react-native-extended-stylesheet/blob/master/types/index.d.ts). Could you check with some...

Hi @abdallahm Could you make some effort in direction when we wrap the whole app in our `` component and listen it's `onLayout` event to detect orientation change? In that...

I've pushed my drafts on this feature to separate branch **orientation-support**, lets move our work there. I suggest creating `layout` module that will do all job for processing layout changes...

hi @vdhpieter I am currently a bit out of mobile unfortunately..

Hi @Antoine-C unfortunately not :(

Hi @bang88 currently not. I think it may depend on app itself but seems we can make a recommendation. It would be great if you share you experience!

Your concerns are ok. Dynamic orientation change is long story being discussed in #9. You can call `EStyleSheet.build()` with new `$rem` value after orientation change, but also you'l need to...

Until this fixed I've used the following workaround: ```ts import { Document, XmlComponent, OnOffElement } from 'docx'; const doc = new Document({ ... }); doc.Settings.addChildElement(new DoNotExpandShiftReturn()); class DoNotExpandShiftReturn extends XmlComponent...

Maybe add tags via [decorators](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#decorators)? For example: ```ts import { createTag } from '@playwright/test'; const fast = createTag('fast'); @fast test('Test login page', async ({ page }) => { // ......