mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import React from 'react' 2import {StyleProp, ViewStyle} from 'react-native' 3import {LinearGradient} from 'expo-linear-gradient' 4 5import {gradients} from '#/alf/tokens' 6 7export function LinearGradientBackground({ 8 style, 9 children, 10}: { 11 style: StyleProp<ViewStyle> 12 children: React.ReactNode 13}) { 14 const gradient = gradients.sky.values.map(([_, color]) => { 15 return color 16 }) 17 18 return ( 19 <LinearGradient colors={gradient} style={style}> 20 {children} 21 </LinearGradient> 22 ) 23}