import React from 'react' import { View, StyleSheet } from 'react-native' import GradientText from './GradientText' /** * 渐变文字使用示例 */ export default function GradientTextExample() { return ( {/* 水平渐变 */} 水平渐变文字 {/* 垂直渐变 */} 垂直渐变文字 {/* 对角线渐变 */} 对角线渐变 {/* 两色渐变 */} 两色渐变 ) } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', padding: 20, gap: 30, }, text: { fontSize: 24, fontWeight: '600', }, largeText: { fontSize: 32, fontWeight: 'bold', }, boldText: { fontSize: 28, fontWeight: 'bold', }, })