Davyd NRB
Davyd NRB
**To reproduce:** ```sh npx react-native init inappUpdates cd inappUpdates yarn add kumparan/react-native-android-inapp-updates # use git version to apply unpublished changes cd android ./gradlew assembleRelease ``` **Error:** ```sh FAILURE: Build failed...
### Current behavior ```tsx import {PlatformColor} from 'react-native'; import {DefaultTheme} from '@react-navigation/native'; import type {Theme} from '@react-navigation/native'; const CallstackTheme: Theme = { ...DefaultTheme, colors: { ...DefaultTheme.colors, primary: PlatformColor('systemBlue'), // TS2322:...
## Summary: [`scrollToEnd(options?: {animated?: boolean})`](https://reactnative.dev/docs/scrollview#scrolltoend) is available out of the box, and it's surprising that `scrollToStart` wasn't added yet ## Changelog: [GENERAL] [ADDED] - [ScrollView, FlatList] Add `ref.scrollToStart({animated?: boolean})` method...
## Description `TextInput` has a public methods for blur/focus logic that wasn't mentioned in the docs ```tsx TextInput.State.currentlyFocusedInput(): TextInput | undefined | null TextInput.State.currentlyFocusedField(): number | undefined | null TextInput.State.focusTextInput(textField:...
## Summary: The `Headers` interface of the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) allows you to perform various actions on [HTTP request and response headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers). These actions include retrieving, setting, adding to, and removing...
I face with annoying thing that I have to define `arguments` in each test flow (contestant values, won't be changed) ```yaml - launchApp: appId: "com.example.app" arguments: isMaestro: true turnOffAnalytics: true...