native-base
Version:
Essential cross-platform UI components for React Native
43 lines (41 loc) • 727 B
text/typescript
// Skeleton
export const Skeleton = {
baseStyle: () => {
return {
startColor: 'muted.200',
_dark: {
startColor: 'muted.600',
},
endColor: 'transparent',
overflow: 'hidden',
fadeDuration: 0.1,
speed: 1.0,
h: '10',
w: '100%',
};
},
};
// SkeletonText
export const SkeletonText = {
baseStyle: () => {
return {
startColor: 'muted.200',
_dark: {
startColor: 'muted.600',
},
endColor: 'transparent',
fadeDuration: 0.1,
w: '100%',
speed: 1.0,
flexDirection: 'column',
_line: {
h: 3,
rounded: 'full',
},
};
},
defaultProps: {
lines: 3,
space: 3,
},
};