Other exports
Helpful functions and constants.
Let's take a quick look through some of the useful other exports in @tamagui/core
.
Constants
Constants are re-exported from @tamagui/constants :
isWeb
-process.env.TAMAGUI_TARGET === 'web'
. Should be true both for SSR and Client side web targets.isWindowDefined
-typeof window === 'undefined'
isServer
-isWeb && !isWindowDefined
.isClient
-isWeb && isWindowDefined
.useIsomorphicLayoutEffect
-isServer ? useEffect : useLayoutEffect
. Helper for SSR rendering without warnings.isChrome
- client-side ChromeisWebTouchable
- web-only touch-device (client side only)isTouchable
- True for any touch device (client side only).
Helpers
insertFont
type insertFont = (name: string,fontIn: GenericFont) => ParsedFont
Will add a new font after initial createTamagui call. Where GenericFont
is the same as a font passed to createTamagui, and ParsedFont
is the font with the subkeys prefixed with $
and turned into variable objects.
updateFont
The same as insertFont, but will update an existing font.
isTamaguiComponent
type isTamaguiComponent (component: any; name?: string) => boolean
If no name given, true if a Tamagui component, if name given ensures it's the specific named Tamagui component.
isTamaguiElement
type isTamaguiElement (child: any; name?: string) => boolean
If no name given, true if a Tamagui ReactElement, if name given ensures it's the specific named Tamagui component element.
getTokens
;() => TokensParsed
Returns the parsed Tamagui config object of all your tokens, can be used at runtime to get values from tokens. If you are looking to get a single token value, prefer getToken
or getTokenValue
.
getToken
(name: Token, group?: keyof Tokens) => any
Given the specific name of a token or a name + group, will return the value as either a variable on the web, or raw value on native. So if you define a size token with key small
and value of 14
:
getToken('$size.small') // returns on web var(--size-small), native 14getToken('$small', 'size') // returns on web var(--size-small), native 14
getTokenValue
(name: Token, group?: keyof Tokens) => any
Similar to getToken, but always returns the raw value rather than the variable name. If you define a size token with key small
and value of 14
:
getTokenValue('$size.small') // returns 14getTokenValue('$small', 'size') // returns 14
getExpandedShorthands
;(props: Object) => Object
Take props, returns new object with all shorthand props expanded.
themeable
themeable<Comp extends ReactComponentLike>(component: Comp): Comp
A higher order component that accepts theme
and themeInverse
, rendering them onto Theme
before rendering your component.
getVariable
type getVariable = (value: Variable) => string
If given a Variable
- which comes from a parsed theme or token returned from createTamagui
, useTheme
or getTokens
(read more on the useTheme docs).
Calling getVariable(useTheme().color)
returns var(--color)
on the web, and #fff
on other platforms.
Hooks
useProps
Pass in props that include media styles and shorthands, get back a flat object of styles with the current media styles merged and shorthands expanded. This is an advanced pattern that should be used sparingly, as it will trigger updates on every media query used. Helpful for more complex components that need to pass down props they are given to children (a common example being the size
prop, if it's controlling children that also accept size).
// if props is:// { size: '$2', $sm: { size: '$4' } }// and $sm is active, activeProps will be:// { size: '$4' }// if shorthands like m => margin, then m always expands to marginfunction MyButton(props) {const activeProps = useProps(props)}
You can pass a second option to disable the shorthands expansion
function MyButton(props) {const activeProps = useProps(props, { disableExpandShorthands: true })}
useThemeName
Returns the string name of the current theme.
useIsTouchDevice
SSR-friendly, only true on if native touchable or web touchable device (client side, not server side).
useDidFinishSSR
SSR-friendly, returns true if SSR has completed on the client, false before hydration done. On server it's always false.
Type Helpers
GetProps
Fetches the type of props for a Tamagui component:
import { Stack, GetProps, styled } from '@tamagui/core'const X = styled(Stack, {})type XProps = GetProps<typeof X>
GetRef
Fetches the type of a ref for a Tamagui component, or any React component:
import { Stack, GetRef, styled } from '@tamagui/core'const X = styled(Stack, {})const MyComponent = () => {const ref = useRef<GetRef<typeof X>>()return <X ref={ref} />}