We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff08e8 commit fae770bCopy full SHA for fae770b
Libraries/Components/TextInput/InputAccessoryView.js.flow
@@ -0,0 +1,25 @@
1
+/**
2
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ *
4
+ * This source code is licensed under the MIT license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
7
+ * @flow
8
+ * @format
9
+ */
10
+
11
+import * as React from 'react';
12
+import Platform from '../../Utilities/Platform';
13
+import StyleSheet, {
14
+ type ViewStyleProp,
15
+ type ColorValue,
16
+} from '../../StyleSheet/StyleSheet';
17
18
+type Props = $ReadOnly<{|
19
+ +children: React.Node,
20
+ nativeID?: ?string,
21
+ style?: ?ViewStyleProp,
22
+ backgroundColor?: ?ColorValue,
23
+|}>;
24
25
+module.exports = class InputAccessoryView extends React.Component<Props> {};
0 commit comments