mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9ff090e507
Summary: In this diff we integrate the Picker component on Android in Fabric. Since both AndroidDropdownPickerNativeComponent and AndroidDialogPickerNativeComponent use `style?: ?TextStyleProp`, which is not supported by the JS codegen, I had to handwrite the C++ files and check them in. The component is not fully functional yet because `setNativeProps` is not supported in Fabric. I will fix this in the next diff. Changelog: [Android] [Added] - Integrate Picker into Fabric on Android Reviewed By: mdvacca Differential Revision: D17954435 fbshipit-source-id: 6b7b029ab0c84c27a48c7dddd66878c9dea324bf
24 lines
631 B
C++
24 lines
631 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "AndroidDialogPickerEventEmitter.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
void AndroidDialogPickerEventEmitter::onSelect(
|
|
AndroidDialogPickerOnSelectStruct event) const {
|
|
dispatchEvent("select", [event = std::move(event)](jsi::Runtime &runtime) {
|
|
auto payload = jsi::Object(runtime);
|
|
payload.setProperty(runtime, "position", event.position);
|
|
return payload;
|
|
});
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|