-
-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathreactnativekeyboardcontroller.h
More file actions
24 lines (20 loc) · 1.09 KB
/
reactnativekeyboardcontroller.h
File metadata and controls
24 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once
#include <ReactCommon/JavaTurboModule.h>
#include <ReactCommon/TurboModule.h>
#include <jsi/jsi.h>
/**
* Note this import and that it is not present in autogenerated header file
* under android/build/generated/source/codegen/jni/reactnativekeyboardcontroller.h
*
* Here we are overriding autogenerated component descriptors by prioritizing our custom headers via include path setup.
*/
#include <react/renderer/components/reactnativekeyboardcontroller/RNKCKeyboardControllerViewComponentDescriptor.h>
#include <react/renderer/components/reactnativekeyboardcontroller/RNKCKeyboardGestureAreaComponentDescriptor.h>
#include <react/renderer/components/reactnativekeyboardcontroller/RNKCOverKeyboardViewComponentDescriptor.h>
#include <react/renderer/components/reactnativekeyboardcontroller/RNKCKeyboardBackgroundViewComponentDescriptor.h>
#include <memory>
#include <string>
namespace facebook::react {
JSI_EXPORT
std::shared_ptr<TurboModule> reactnativekeyboardcontroller_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms);
} // namespace facebook::react