Gabriel Donadel Dall'Agnol

Results 54 issues of Gabriel Donadel Dall'Agnol

**Intended outcome:** In order to set custom headers for a specific mutation the `context` parameter should work when using ApolloClient.mutate. e.g. ```js await client.mutate({ mutation: TestDocument, variables: { testId },...

**Motivation** This PR adds the missing `hideKeyboardOnSwipe` prop from react-native-screens to react-navigation/native-stack. This is prop is essential if we need to hide the keyboard on the swipe gesture and it...

first pull request

As reported in https://github.com/DylanVann/react-native-fast-image/issues/445 and on other issues when rendering larger images in small views using FastImage the image becomes pixilated. The main idea for this is that by adding...

### Introduction When running [RNTester](https://github.com/facebook/react-native/tree/main/packages/rn-tester) we see this warning stating that `Slider has been extracted from react-native core and will be removed in a future release.` which got me thinking...

### Introduction I would like to propose adding support for "Prefer Cross-Fade Transitions" into AccessibilityInfo by exposing the iOS `UIAccessibilityPrefersCrossFadeTransitions()` function. ### Details `UIAccessibilityPrefersCrossFadeTransitions` was added to UIKit on iOS...

## Summary This adds the `tabIndex` Android only prop to View as requested on https://github.com/facebook/react-native/issues/34424 mapping the existing `focusable` prop to `tabIndex` so that `tabIndex={0}` maps to `focusable={true}` and `tabIndex={-1}`...

CLA Signed
Platform: Android
Type: Enhancement
Shared with React Native Team

## Summary Fix `KeyboardAvoidingView` height on iOS when "Prefer Cross-Fade Transitions" is enabled by adding an additional check to `_relativeKeyboardHeight` verifying if `prefersCrossFadeTransitions()` is true and `keyboardFrame.screenY` is `0` and...

CLA Signed
Platform: iOS
Bug
Shared with React Native Team

## Summary This adds the `inputMode` prop to the TextInput component as requested on https://github.com/facebook/react-native/issues/34424, mapping web [inputMode types](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) to equivalent [keyboardType](https://reactnative.dev/docs/textinput#keyboardtype) values. This PR also updates RNTester TextInputExample in...

CLA Signed
Type: Enhancement
Shared with React Native Team

## Summary This is a follow-up PR of https://github.com/facebook/react-native/pull/34444 and it adds a deprecation warning regarding the `TextInput` component `editable` prop as requested by @lunaleaps here -> https://github.com/facebook/react-native/pull/34444#discussion_r952952614 ## Changelog...

CLA Signed
Type: Deprecation
Shared with React Native Team

### Description This adds support for the `any` mediaType when using the `openCamera` function on iOS, allowing users to either take a picture or record a video. Unfortunately with the...