web-dev-qa-db-ja.com

アニメーション:ReactNativeBase入力の問題として「useNativeDriver」が指定されていなかった

今日(2020年4月3日)に新しいreactネイティブプロジェクトを作成し、native-baseを追加しました。次に、フローティングラベルを使用して入力を追加しようとしました。警告メッセージが表示されます:アニメーション:useNativeDriverが指定されていません。これは必須オプションであり、trueまたはfalseに明示的に設定する必要があります。 floatingLabel属性を削除したり、stackedLabelに変更したりすると、警告が消えました。この警告が表示されている間、onChangeTextは呼び出されていません。

Warning message

コンポーネントファイル。

import React from 'react';
import {
  SafeAreaView,
  ScrollView,
  StatusBar,
  StyleSheet,
  View,
} from 'react-native';

import {Input, Item, Label} from 'native-base';

import {Colors} from 'react-native/Libraries/NewAppScreen';

declare var global: {HermesInternal: null | {}};

const App = () => {
  return (
    <>
      <StatusBar barStyle="dark-content" />
      <SafeAreaView>
        <ScrollView
          contentInsetAdjustmentBehavior="automatic"
          style={styles.scrollView}>
          <View style={styles.body}>
            <Item floatingLabel>
              <Label>Test</Label>
              <Input onChangeText={text => console.log(text)} />
            </Item>
          </View>
        </ScrollView>
      </SafeAreaView>
    </>
  );
};

package.json

{
  "name": "formtest",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "Android": "react-native run-Android",
    "ios": "react-native run-ios",
    "start": "react-native start",
    "test": "jest",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx"
  },
  "dependencies": {
    "native-base": "^2.13.12",
    "react": "16.11.0",
    "react-native": "0.62.0"
  },
  "devDependencies": {
    "@babel/core": "^7.6.2",
    "@babel/runtime": "^7.6.2",
    "@react-native-community/eslint-config": "^1.0.0",
    "@types/jest": "^24.0.24",
    "@types/react-native": "^0.62.0",
    "@types/react-test-renderer": "16.9.2",
    "@TypeScript-eslint/eslint-plugin": "^2.25.0",
    "@TypeScript-eslint/parser": "^2.25.0",
    "babel-jest": "^24.9.0",
    "eslint": "^6.5.1",
    "jest": "^24.9.0",
    "metro-react-native-babel-preset": "^0.58.0",
    "react-test-renderer": "16.11.0",
    "prettier": "^2.0.2",
    "TypeScript": "^3.8.3"
  },
  "jest": {
    "preset": "react-native",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
9
Supun Induwara

フォルダー〜\ node_modules\native-base\dist\src\basic \でanimated.timingを検索し、手動でuseNativeDriverを追加します:trueまたはfalse

0
Ahmad Habib

ほとんどの場合、Animated.timingまたはAnimated.springのすべてのインスタンスを見つけて、構成にuseNativeDriver:trueを追加します。

0
Nitin Singh