UNPKG

rn-custom-style-sheet

Version:

React Native component to select a specific value from a range of values.

10 lines (8 loc) 268 B
import type { ThemeContextType } from '../../../Core'; import { useThemeContext } from '../../../Core'; export default function useCurrentThemeName(): string { const { state: { appThemeName }, }: ThemeContextType = useThemeContext(); return appThemeName; }