Tutorial

Creating a Button with Gradient Border in React Native

Published on February 8, 2019
Default avatar

By Julia Ihnatova

Creating a Button with Gradient Border in React Native

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Over the past two months I’ve been working with React Native and in this short tutorial I’ll show how to create a button with a gradient border, just like this one:

Gradient border button

To do that, we’ll use a LinearGradient component from Expo. If you’re not familiar with Expo, you can go ahead and read our introduction here .

Getting Started

First let’s start by creating a custom button component:

<TouchableOpacity onPress={() => {})}>
  <View style={styles.circleGradient}>
    <Text style={styles.visit}>Login</Text>
  </View>  
</TouchableOpacity>

And let’s define the styles like this, for rounded corners:

circleGradient: {
  backgroundColor: "white",
  borderRadius: 5
},
visit: {
  margin: 4,
  paddingHorizontal: 6,
  textAlign: "center",
  backgroundColor: "white",
  color: '#008f68',
  fontSize: 12
}

Adding a Gradient Border

React Native doesn’t support gradient borders out of the box, so we’ll nest our View within a View that will be playing a role of gradient border.

First we’ll import LinearGradient from Expo:

import { LinearGradient } from "expo";

Let’s define the positions for the gradient to start and end. According to the documentation we can do this by using the start and end props. The colors prop contains an array of colors that represent the gradient stops.

Then wrap our View with LinearGradient:

<TouchableOpacity onPress={() => {})}>
  <LinearGradient start={[0, 0.5]}
                  end={[1, 0.5]}
                  colors={['#EFBB35', '#4AAE9B']}
                  style={{borderRadius: 5}}>
    <View style={styles.circleGradient}>
      <Text style={styles.visit}>Login</Text>
    </View>
  </LinearGradient>
</TouchableOpacity>

Notice that we apply the borderRadius style to the LinearGradient with the same value as our View. We now have a simple button with rounded border, but no apparent gradient:

Simple button

That’s because our View and LinearGradient components have the same size. Let’s add a margin to our View component:

circleGradient: {
  margin: 1,
  backgroundColor: "white",
  borderRadius: 5
},

And voilà, we have a nice button with gradient border! 🌈

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Julia Ihnatova

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel