To get system preferred color scheme in Android and iOS, we can use Appearance
module of React Native.
But the question is, where it is used? Actually if you are going to provide both dark and light theme in your application then there are two ways to switch the themes –
- Provide an option to switch themes and let users use according to their choice.
- Use the mode which user has already set in their system preferences.
If you are going with 1st option then you will need to create a <Switch> and according to selection, show the theme.
In this article, we are focusing on 2nd option where system preference regarding color scheme is fetched. We do it in this way –
import { Appearance } from 'react-native'; const colorScheme = Appearance.getColorScheme(); if (colorScheme === 'dark') { // Use dark color scheme }
In the above snippet we are using getColorScheme()
function of Appearance
module to get scheme like dark or light.
But there is a problem here. We are storing the value in colorScheme
constant. What if the system color mode is automatically switched to different mode? Like auto mode change due to daylight settings? Then our code keep on showing according to previous mode.
To solve this issue, we can use useColorScheme()
hook. Like this –
import { Appearance } from 'react-native'; const colorScheme = useColorScheme(); // The colorScheme value will automatically // update according to changes in color scheme
Code Example
import React, { useState } from "react"; import { View, StyleSheet, Text, Appearance, useColorScheme } from "react-native"; const App = () => { const colorScheme = useColorScheme(); const colorSchemeAppearance = Appearance.getColorScheme(); return ( <View style={styles.container}> <Text style={styles.textStyle}> Appearance.getColorScheme() = {colorSchemeAppearance} </Text> <Text style={styles.textStyle}> useColorScheme() = {colorScheme} </Text> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: "space-around", padding: 30 }, textStyle: { fontSize: 20 } }); export default App;
Output –
The above image shows the value of currently applied color schemes in both iOS (left) and Android (right) phones.
In our code we are using both Appearance
and useColorScheme()
hook methods to get the value of current display mode.
Live Demo
Conclusion
To know about the current color scheme of the mobile phone, you can use getColorScheme()
function of Appearance
module or use useColorScheme()
hook.
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