
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-themed
Advanced tools
yarn add react-native-themed
or
npm i react-native-themed
import { ThemeProvider } from 'react-native-themed';
function App() {
// mode can be any valid string,usually we use 'light' and 'dark' to present system appearance.
const mode = 'dark';
return (
<ThemeProvider value={mode}>
<YourProjectComponent />
</ThemeProvider>
)
}
import { createPalette } from 'react-native-themed';
const LightBaseColors = {
primaryBackground: '#fff',
primaryFont: '#41464b',
};
const DarkBaseColors = {
primaryBackground: 'rgb(40, 40, 40)',
primaryFont: 'rgb(199, 199, 199)'
};
export const BaseColors = createPalette({
'light': LightBaseColors,
'dark': DarkBaseColors
});
import Themed from 'react-native-themed';
<Themed.View style={{ flex: 1, backgroundColor: BaseColors.primaryBackground }}>
<Themed.Text style={{ color: BaseColors.primaryFont }}>Text</Themed.Text>
</Themed.View>
import { ThemeProvider } from 'react-native-themed';
class ProvideThemeForApp extends Class {
return (
<ThemeProvider>
<App />
</ThemeProvider>
)
}
Provide themed context for a react child.
Create palette with a combination of Themed.Values.
import Themed, { createPalette } from 'react-native-themed';
const LightBaseColors = {
primaryBackground: '#fff',
primaryFont: '#41464b',
};
const DarkBaseColors = {
primaryBackground: 'rgb(40, 40, 40)',
primaryFont: 'rgb(199, 199, 199)'
};
export const BasePalette = createPalette({
'light': LightBaseColors,
'dark': DarkBaseColors
});
// This is equal to:
export const BasePalette = {
primaryBackground: new Themed.Value({
light: '#fff',
dark: 'rgb(40, 40, 40)'
}),
primaryFont: new Themed.Value({
light: '#41464b',
dark: 'rgb(199, 199, 199)'
}),
}
function createThemedComponent<P, S extends object>(Component: ComponentType<PropsWithChildren<P>>, transformer?: (props: PropsWithChildren<ThemeProps<S, P>>, mode: string) => PropsWithChildren<P>)
Create a component with themed context, it will automatically transform Themed.Values inside props into theme matched result.
import { View } from 'react-native';
import createThemedComponent from '../createThemedComponent';
const ThemedView = createThemedComponent(View);
/**
* <ThemedView style={{ backgroundColor: new Themed.Value({ dark: 'white', light: 'black' }) }} />
*/
createThemedComponent takes a second optional argument: transformer?: (props: PropsWithChildren<ThemeProps<S, P>>, mode: string) => PropsWithChildren<P>. If the Themed.Value is nested inside prop value, using transformer could transform the prop properly.
Let's take (LinearGradient)[https://github.com/react-native-community/react-native-linear-gradient] as an example
import LinearGradient from 'react-native-linear-gradient';
import createThemedComponent, { transformValue, transformStyle } from '../createThemedComponent';
const ThemedLinearGradient = createThemedComponent(LinearGradient, (props) => {
return {
...props,
style: transformStyle(props.style),
colors: props.colors ? props.colors.map((color) => {
return transformValue(color);
}) : props.colors
}
});
Then the ThemedLinearGradient component can use Themed.Value inside style prop and colors prop.
<ThemedLinearGradient
style={{
borderColor: new Theme.Value({
light: 'red',
dark: 'blue'
}),
borderWidth: 2
}}
colors=[
new Theme.Value({
light: '#f00',
dark: '#ff0'
}),
new Theme.Value({
light: '#0ff',
dark: '#00f'
})
]
/>
Themed.Value({ [theme: string]: any })
Themed.ActivityIndicator,
Themed.Button,
Themed.FlatList,
Themed.ScrollView,
Themed.RefreshControl,
Themed.View,
Themed.Text,
Themed.TextInput
Themed.Image,
Themed.TouchableHighlight
Themed.TouchableOpacity
FAQs
React Native themed components suite.
We found that react-native-themed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.