1.2.8 • Published 6 months ago

react-native-linear-gradient-text v1.2.8

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

About

Component to display text with linear gradient


Installation

Step 1: Install @react-native-masked-view/masked-view library

Make sure that you have installed the @react-native-masked-view/masked-view library:

Step 2: Install react-native-linear-gradient library

Make sure that you have installed the react-native-linear-gradient library:


Getting Started

yarn add react-native-linear-gradient-text
# or
npm install react-native-linear-gradient-text

Usage

import React from 'react';
import { View, StyleSheet } from 'react-native';
import { LinearGradientText } from 'react-native-linear-gradient-text';

export const App = () => {
  return (
    <View style={styles.container}>
      <LinearGradientText
        colors={['#E76F00', '#EA374E']}
        text="Hello World"
        start={{ x: 0.5, y: 0 }}  // Optional
        end={{ x: 1, y: 1 }}  // Optional
        textStyle={{ fontSize: 40 }}  // Optional
        textProps={{ allowFontScaling: true }}  // Optional
      />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

Props

PropTypeDefaultDescription
textstringRequiredAn string that display text. Example: text="Hello World"
colorsstring[]RequiredAn array of at least two color values that represent gradient colors. Example: colors={["black", "white"]}.
start{ x: number, y: number }{ x: 0.5, y: 0 }An optional prop. He declare the position that the gradient starts. Example start={{ x: 0.5, y: 0 }}.
end{ x: number, y: number }{ x: 1, y: 1 }Same as start, but for the of the gradient.
textStyleTextStyleDefault ValueA property to change all styles that a text has.
textPropsTextPropsDefault ValueA property to apply native props to text.

Author


Contributors

License

This project is under the MIT license. See the LICENSE to learn more. Contact!

1.2.9

4 months ago

1.2.10

4 months ago

1.2.0

7 months ago

1.1.1

7 months ago

1.1.0

7 months ago

1.2.8

6 months ago

1.2.7

6 months ago

1.2.6

6 months ago

1.2.5

6 months ago

1.2.4

6 months ago

1.2.3

6 months ago

1.2.2

6 months ago

1.2.1

6 months ago

1.1.2

7 months ago

0.3.1

2 years ago

0.3.0

2 years ago

0.2.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago