Mohamed Moussa

Results 8 issues of Mohamed Moussa

# Description This library works great for left-to-right languages but is currently broken for right-to-left languages due to a bug with the positioning logic. I have fixed this bug and...

Closes #5. Implementation is copied almost exactly from that of `FlatList`. I had to extend the type definition of `VirtualizedList` because the one provided in `@typed` is missing `getScrollableNode()` which...

The cause is here: https://github.com/ammarahm-ed/react-native-actions-sheet/commit/7fa623da8c7ff3e8e51a8cf68e8a4ff125b59aeb#r103324610. Unfortunately that commit does not provide any context for the change. Setting `overflow` as `'visible'` fixes the issue but I was hoping @ammarahm-ed could add...

This PR changes the behaviour of `WebpackRtlPlugin` to use `compilation.assets` for identifying css files instead of `compilation.chunks` in order to work correctly with other plugins such as `AddAssetHtmlPlugin`. Closes #16.

This plugin uses the `emit` event of the compiler. [According to the webpack docs](http://webpack.github.io/docs/plugins), at this stage "the Compiler begins with emitting the generated assets. Here plugins have the last...

### Discussed in https://github.com/Shopify/react-native-skia/discussions/2257 Originally posted by **murattil** February 27, 2024 The fonts packaged as assets in my RN app (`assets/fonts/[font].ttf`) show up as system fonts on iOS when listed...

Currently, packaged fonts are included in the font manager on iOS but are missing on Android. This is documented in #2503. In response to a request in that issue, I'm...

[The API specification for `Crypto.getRandomValues`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/getRandomValues#typedarray) says the following for its input paremeter: > An integer-based TypedArray, that is one of: Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, BigInt64Array, BigUint64Array (but...