Use animating
props of ActivityIndicator
component to show or hide the circular loader in React Native. Set it to true
to show the loader and false
to hide it.
You can declare a state variable to decide the visibility of loader.
Code Example
import React from "react"; import { ActivityIndicator, StyleSheet, Text, View, Button } from "react-native"; const App = () => { const [showLoader, setShowLoader] = React.useState(true) return (<View style={[styles.container, styles.horizontal]}> <ActivityIndicator animating={showLoader} size="large" /> <Button style={{flex:2}} title={'show/hide Loader'} onPress={() => setShowLoader(!showLoader)} /> </View>) } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center" }, horizontal: { flexDirection: "row", justifyContent: "space-around", alignItems: "center", padding: 10 } }); export default App;
In the above example, we set a state variable – showLoader
. This is passed to the animating
props of ActivityIndicator
.
When the button is pressed, the value of showLoader
will toggle. Because we are passing the setShowLoader()
function with opposite boolean value of showLoader
on the press of button.
Note: This will hide the ActivityIndicator
but it still is present at it’s position. Meaning, it is taking space there. So visibility is hidden but element is there.
Live Demo
animating
props can be used to hide the visibility but element will stay there and will take the space on the screen.
To completely remove the loader component from screen, you can wrap the ActivityIndicator
inside boolean condition deriving from showLoader
variable. Check the next code –
Display / Remove Circular Loader Code
import React from "react"; import { ActivityIndicator, StyleSheet, Text, View, Button } from "react-native"; const App = () => { const [showLoader, setShowLoader] = React.useState(true) return (<View style={[styles.container, styles.horizontal]}> {showLoader ? <ActivityIndicator animating={true} size="large" /> : null} <Button style={{flex:2}} title={'show/hide Loader'} onPress={() => setShowLoader(!showLoader)} /> </View>) } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "center" }, horizontal: { flexDirection: "row", justifyContent: "space-around", alignItems: "center", padding: 10 } }); export default App;
Live Demo
Conclusion
To show or hide circular loader in React Native, we can use animating
props of <ActivityIndicator>
component. This will set the visibility of loader but the element stays there. So it continue to take up space on screen. But we can conditionally add ActivityIndicator
component to solve this issue.
React Native Series
Alert
- Basic Alert
- Dismiss on Clicking Outside
- Input Fields in Alert Dialog – Prompt()
- Dark-Light Theme of Dialog
ActivityIndicator
- Basic Circular Loader
- Change size of Circular Loader
- Show/hide Circular Loader
- Change color of Circular Loader
Button
FlatList
- Simple List
- Single Item Selection from List
- Multiple Item Selection from List
- Adding separator between list items
- Multiple columns List
- Showing Message in Empty List
- Add Footer to the List
- Add Header to the List
- Horizontal List
- Inverted List
- Pull to Refresh in List
- Infinite Loading List
SectionList
ScrollView
- ScrollView
- Stick Single Item at Header
- Stick Multiple Items at Header
- Stick Item at Footer
- Hide Sticky Element on Scroll
Image
- Display Image from remote url
- Display local storage image
- Display Base64 Image
- Display Gif & Webp Images
- Adding Blur to Image
- Displaying loader for Image
- Resizemode for Images
- Setting Default Placeholder Image
- Background Image
Modal
RefreshControl
- RefreshControl
- Change Refresh Loader Color
- Change Refresh Loader Size
- Change Refresh Loader Background Color
- Title under Refresh Loader
- Change color of title under refresh loader
StatusBar
- Get StatusBar Size
- Change StatusBar Background Color
- Display StatusBar icons & text in While Color
- Display StatusBar icons & text in Dark Color
- Hiding StatusBar
- Translucent StatusBar
Switch
Text
- Adding Text
- Bold Text
- Italic Text
- Underline Text
- Selecting Text for copy-paste
- Changing Highlight Color of Text Selection
- Fit text in View box
- Clickable anchors in text
- Truncate Lengthy Text
TextInput
- Simple Input Field
- Auto Capitalize Text in Input Field
- Multiline Input Field
- Hide Cursor in Input Field
- Clear input Field using X
- Clear input Field when focused
- Change Cursor Color in Input Field
- Disable input field
- Icon at the left of Input Field
- Dark-Light Keyboard
- Avoid Overlapping of Keyboard
- Limiting Characters in Input Field
- Numeric Keyboard
- Email Id Keyboard
- Phone number Keyboard
- Url Keyboard
- Placeholder in input field
- Placeholder Color in Input Field
- Password Input Field
- Programmatically select text in Input Field
- Change Text Selection Color in Input Field
- Select Whole text in Input Field on Focus
- Write text from center in input field
- Changing underline color of input field
TouchableWithoutFeedback
TouchableHighlight
TouchableOpacity
Pressable
Appearance
AppState
ToastAndroid
Dimensions
Keyboard