mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
59c4db85fb
Summary: Reland of https://github.com/facebook/react-native/issues/35319 with a fix for custom pull to refresh components. Custom pull to refresh component in fabric will need to conform to the `RCTCustomPullToRefreshViewProtocol` protocol, this way we know that the view is a pull to refresh and not the content view. ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [IOS] [ADDED] - Add fabric support for maintainVisibleContentPosition on iOS For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> Pull Request resolved: https://github.com/facebook/react-native/pull/36095 Test Plan: This will need to be tested internally in the product the crash happened. Take a local build of Wilde open Marketplace. Reviewed By: jacdebug Differential Revision: D43128163 Pulled By: cipolleschi fbshipit-source-id: 6cf8ddff92aeb446072a3d847434e21b9e38af61
82 lines
2.3 KiB
C++
82 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/renderer/components/scrollview/primitives.h>
|
|
#include <react/renderer/components/view/ViewProps.h>
|
|
#include <react/renderer/core/PropsParserContext.h>
|
|
|
|
#include <optional>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
// TODO (T28334063): Consider for codegen.
|
|
class ScrollViewProps final : public ViewProps {
|
|
public:
|
|
ScrollViewProps() = default;
|
|
ScrollViewProps(
|
|
const PropsParserContext &context,
|
|
ScrollViewProps const &sourceProps,
|
|
RawProps const &rawProps);
|
|
|
|
void setProp(
|
|
const PropsParserContext &context,
|
|
RawPropsPropNameHash hash,
|
|
const char *propName,
|
|
RawValue const &value);
|
|
|
|
#pragma mark - Props
|
|
|
|
bool alwaysBounceHorizontal{};
|
|
bool alwaysBounceVertical{};
|
|
bool bounces{true};
|
|
bool bouncesZoom{true};
|
|
bool canCancelContentTouches{true};
|
|
bool centerContent{};
|
|
bool automaticallyAdjustContentInsets{};
|
|
bool automaticallyAdjustsScrollIndicatorInsets{true};
|
|
Float decelerationRate{0.998f};
|
|
bool directionalLockEnabled{};
|
|
ScrollViewIndicatorStyle indicatorStyle{};
|
|
ScrollViewKeyboardDismissMode keyboardDismissMode{};
|
|
std::optional<ScrollViewMaintainVisibleContentPosition>
|
|
maintainVisibleContentPosition{};
|
|
Float maximumZoomScale{1.0f};
|
|
Float minimumZoomScale{1.0f};
|
|
bool scrollEnabled{true};
|
|
bool pagingEnabled{};
|
|
bool pinchGestureEnabled{true};
|
|
bool scrollsToTop{true};
|
|
bool showsHorizontalScrollIndicator{true};
|
|
bool showsVerticalScrollIndicator{true};
|
|
Float scrollEventThrottle{};
|
|
Float zoomScale{1.0f};
|
|
EdgeInsets contentInset{};
|
|
Point contentOffset{};
|
|
EdgeInsets scrollIndicatorInsets{};
|
|
Float snapToInterval{};
|
|
ScrollViewSnapToAlignment snapToAlignment{};
|
|
bool disableIntervalMomentum{false};
|
|
std::vector<Float> snapToOffsets{};
|
|
bool snapToStart{true};
|
|
bool snapToEnd{true};
|
|
ContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior{
|
|
ContentInsetAdjustmentBehavior::Never};
|
|
bool scrollToOverflowEnabled{false};
|
|
|
|
#pragma mark - DebugStringConvertible
|
|
|
|
#if RN_DEBUG_STRING_CONVERTIBLE
|
|
SharedDebugStringConvertibleList getDebugProps() const override;
|
|
#endif
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|