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
45 lines
1.1 KiB
C++
45 lines
1.1 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 <optional>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
enum class ScrollViewSnapToAlignment { Start, Center, End };
|
|
|
|
enum class ScrollViewIndicatorStyle { Default, Black, White };
|
|
|
|
enum class ScrollViewKeyboardDismissMode { None, OnDrag, Interactive };
|
|
|
|
enum class ContentInsetAdjustmentBehavior {
|
|
Never,
|
|
Automatic,
|
|
ScrollableAxes,
|
|
Always
|
|
};
|
|
|
|
class ScrollViewMaintainVisibleContentPosition final {
|
|
public:
|
|
int minIndexForVisible{0};
|
|
std::optional<int> autoscrollToTopThreshold{};
|
|
|
|
bool operator==(const ScrollViewMaintainVisibleContentPosition &rhs) const {
|
|
return std::tie(this->minIndexForVisible, this->autoscrollToTopThreshold) ==
|
|
std::tie(rhs.minIndexForVisible, rhs.autoscrollToTopThreshold);
|
|
}
|
|
|
|
bool operator!=(const ScrollViewMaintainVisibleContentPosition &rhs) const {
|
|
return !(*this == rhs);
|
|
}
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|