3

Figma flavored squircles for React Native

 3 years ago
source link: https://reactnativeexample.com/figma-flavored-squircles-for-react-native/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
Figma Squircle

Figma flavored squircles for React Native

Jun 17, 2021 1 min read

React Native Figma Squircle

Figma-flavored squircles for React Native.

Disclaimer

This library is not an official product from the Figma team and does not guarantee to produce the same results as you would get in Figma.

What is this?

Figma has a great feature called corner smoothing, allowing you to create rounded shapes with a seamless continuous curve (squircles).

This library helps you bring those squircles to your React Native apps.

Installation

Install react-native-svg

Then install this library:

yarn add react-native-figma-squircle
npm install react-native-figma-squircle

Usage

A SquircleView can be used just like a normal View, except the background is rendered separately from the view background. So to change how it looks, you'll have to use the squircleParams prop instead of the style prop.

import { SquircleView } from 'react-native-figma-squircle'

function PinkSquircle() {
  return (
    <SquircleView
      style={{ width: 200, height: 200 }}
      squircleParams={{
        cornerSmoothing: 0.7,
        cornerRadius: 30,
        fillColor: 'pink',
      }}
    />
  )
}

You can also use it with MaskedView to apply the squircle shape to an Image.

import MaskedView from '@react-native-community/masked-view'

function ProfilePicture() {
  return (
    <MaskedView
      style={styles.profilePicture}
      maskElement={
        <SquircleView
          style={StyleSheet.absoluteFill}
          squircleParams={{
            cornerRadius: 30,
            cornerSmoothing: 0.7,
            fillColor: 'pink',
          }}
        />
      }
    >
      <Image style={StyleSheet.absoluteFill} source={{ uri: 'https://...' }} />
    </MaskedView>
  )
}

Props

Inherits View Props

squircleProps

An object that controls how the squircle looks.

interface SquircleProps {
  cornerRadius: number
  cornerSmoothing: number
  fillColor?: Color
  strokeColor?: Color
  strokeWidth?: number
}

cornerSmoothing

number

Goes from 0 to 1, controls how smooth the corners should be.

cornerRadius

number

Similar to borderRadius in the style prop.

fillColor

Color | defaults to #000

Similar to backgroundColor in the style prop.

strokeColor

Color | defaults to #000

Similar to backgroundColor in the style prop.

strokeWidth

number | defaults to 0

Similar to borderWidth in the style prop.

GitHub

https://github.com/tienphaw/react-native-figma-squircle

Previous Post

React Native Animated Header with ScrollView

Next Post

Wallet app for the THORChain community with React-Native

Subscribe to React Native Example for Android and iOS

Get the latest posts delivered right to your inbox


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK