| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/RefreshControl/ |
| H A D | ABI48_0_0RCTRefreshControl.m | 51 // If the control is refreshing when mounted we need to call 84 [self setCurrentRefreshingState:super.refreshing]; 89 [self setCurrentRefreshingState:super.refreshing]; 110 [self setCurrentRefreshingState:super.refreshing]; 162 - (void)setRefreshing:(BOOL)refreshing 164 if (_currentRefreshingState != refreshing) { 165 [self setCurrentRefreshingState:refreshing]; 167 if (refreshing) { 177 - (void)setCurrentRefreshingState:(BOOL)refreshing 179 _currentRefreshingState = refreshing; [all …]
|
| H A D | ABI48_0_0RCTRefreshControlManager.m | 24 ABI48_0_0RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL) category 30 …CT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing) 36 [(id<ABI48_0_0RCTRefreshableProtocol>)view setRefreshing:refreshing];
|
| H A D | ABI48_0_0RCTRefreshableProtocol.h | 18 - (void)setRefreshing:(BOOL)refreshing;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/RefreshControl/ |
| H A D | ABI47_0_0RCTRefreshControl.m | 51 // If the control is refreshing when mounted we need to call 84 [self setCurrentRefreshingState:super.refreshing]; 89 [self setCurrentRefreshingState:super.refreshing]; 110 [self setCurrentRefreshingState:super.refreshing]; 162 - (void)setRefreshing:(BOOL)refreshing 164 if (_currentRefreshingState != refreshing) { 165 [self setCurrentRefreshingState:refreshing]; 167 if (refreshing) { 177 - (void)setCurrentRefreshingState:(BOOL)refreshing 179 _currentRefreshingState = refreshing; [all …]
|
| H A D | ABI47_0_0RCTRefreshControlManager.m | 24 ABI47_0_0RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL) category 30 …CT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing) 36 [(id<ABI47_0_0RCTRefreshableProtocol>)view setRefreshing:refreshing];
|
| H A D | ABI47_0_0RCTRefreshableProtocol.h | 18 - (void)setRefreshing:(BOOL)refreshing;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/RefreshControl/ |
| H A D | ABI49_0_0RCTRefreshControl.m | 51 // If the control is refreshing when mounted we need to call 84 [self setCurrentRefreshingState:super.refreshing]; 89 [self setCurrentRefreshingState:super.refreshing]; 110 [self setCurrentRefreshingState:super.refreshing]; 169 - (void)setRefreshing:(BOOL)refreshing 171 if (_currentRefreshingState != refreshing) { 172 [self setCurrentRefreshingState:refreshing]; 174 if (refreshing) { 184 - (void)setCurrentRefreshingState:(BOOL)refreshing 186 _currentRefreshingState = refreshing; [all …]
|
| H A D | ABI49_0_0RCTRefreshControlManager.m | 24 ABI49_0_0RCT_EXPORT_VIEW_PROPERTY(refreshing, BOOL) category 30 …CT_EXPORT_METHOD(setNativeRefreshing : (nonnull NSNumber *)viewTag toRefreshing : (BOOL)refreshing) 36 [(id<ABI49_0_0RCTRefreshableProtocol>)view setRefreshing:refreshing];
|
| H A D | ABI49_0_0RCTRefreshableProtocol.h | 18 - (void)setRefreshing:(BOOL)refreshing;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Fabric/Mounting/ComponentViews/ScrollView/ |
| H A D | ABI49_0_0RCTPullToRefreshViewComponentView.mm | 63 if (newConcreteProps.refreshing != oldConcreteProps.refreshing) { 64 if (newConcreteProps.refreshing) { 146 // iOS requires to end refreshing before unmounting. 162 - (void)setNativeRefreshing:(BOOL)refreshing 164 if (refreshing) { 173 - (void)setRefreshing:(BOOL)refreshing 175 [self setNativeRefreshing:refreshing];
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Fabric/Mounting/ComponentViews/ScrollView/ |
| H A D | ABI47_0_0RCTPullToRefreshViewComponentView.mm | 63 if (newConcreteProps.refreshing != oldConcreteProps.refreshing) { 64 if (newConcreteProps.refreshing) { 146 // iOS requires to end refreshing before unmounting. 162 - (void)setNativeRefreshing:(BOOL)refreshing 164 if (refreshing) { 173 - (void)setRefreshing:(BOOL)refreshing 175 [self setNativeRefreshing:refreshing];
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Fabric/Mounting/ComponentViews/ScrollView/ |
| H A D | ABI48_0_0RCTPullToRefreshViewComponentView.mm | 63 if (newConcreteProps.refreshing != oldConcreteProps.refreshing) { 64 if (newConcreteProps.refreshing) { 146 // iOS requires to end refreshing before unmounting. 162 - (void)setNativeRefreshing:(BOOL)refreshing 164 if (refreshing) { 173 - (void)setRefreshing:(BOOL)refreshing 175 [self setNativeRefreshing:refreshing];
|
| /expo/packages/expo-dev-launcher/bundle/components/ |
| H A D | FlatList.tsx | 42 refreshing={throttledRefresh} 48 refreshing={throttledRefresh}
|
| /expo/apps/native-component-list/src/screens/MediaLibrary/ |
| H A D | MediaLibraryScreen.tsx | 56 refreshing: boolean; 64 refreshing: true, 192 dispatch({ type: 'reset', refreshing: false }); 233 refreshing: false, 252 const refresh = React.useCallback((refreshing = true) => { 253 dispatch({ type: 'reset', refreshing }); 262 dispatch({ type: 'reset', refreshing: false }); 332 if (state.refreshing) { 347 }, [state.refreshing, state.assets, mediaType]); 366 refreshControl={<RefreshControl refreshing={state.refreshing} onRefresh={refresh} />}
|
| /expo/apps/native-component-list/src/screens/Contacts/ |
| H A D | ContactsScreen.tsx | 78 const [refreshing, setRefreshing] = React.useState(false); 88 if (!hasNextPage || refreshing || Platform.OS === 'web') { 128 <RefreshControl refreshing={refreshing} onRefresh={() => loadAsync({}, true)} />
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/rncore/ |
| H A D | RCTComponentViewHelpers.h | 63 - (void)setNativeRefreshing:(BOOL)refreshing; 85 BOOL refreshing = [(NSNumber *)arg0 boolValue]; in RCTPullToRefreshViewHandleCommand() local 87 [componentView setNativeRefreshing:refreshing]; in RCTPullToRefreshViewHandleCommand()
|
| H A D | Props.cpp | 55 refreshing(convertRawProp(context, rawProps, "refreshing", sourceProps.refreshing, {false})) 66 refreshing(convertRawProp(context, rawProps, "refreshing", sourceProps.refreshing, {false}))
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Components/RefreshControl/ |
| H A D | RefreshControl.d.ts | 66 refreshing: boolean; property
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Components/RefreshControl/ |
| H A D | RefreshControl.d.ts | 66 refreshing: boolean; property
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/React/Views/ScrollView/ |
| H A D | ABI48_0_0RCTScrollableProtocol.h | 39 @property (nonatomic, readonly, getter=isRefreshing) BOOL refreshing;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/React/Views/ScrollView/ |
| H A D | ABI47_0_0RCTScrollableProtocol.h | 39 @property (nonatomic, readonly, getter=isRefreshing) BOOL refreshing;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/React/Views/ScrollView/ |
| H A D | ABI49_0_0RCTScrollableProtocol.h | 39 @property (nonatomic, readonly, getter=isRefreshing) BOOL refreshing;
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/Lists/ |
| H A D | FlatList.d.ts | 140 refreshing?: boolean | null | undefined; property
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/Lists/ |
| H A D | FlatList.d.ts | 127 refreshing?: boolean | null | undefined; property
|
| /expo/packages/expo/src/environment/ |
| H A D | DevLoadingView.tsx | 30 // TODO: if we show the refreshing banner and don't get a hide message 39 // TODO: if we showed the 'refreshing' banner less than 250ms ago, delay
|