Skip to content

Latest commit

 

History

History

bpk-component-touchable-native-feedback

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

bpk-component-touchable-native-feedback

Backpack React Native touchable native feedback component.

Touchable native feedback

Day Night
bpk-component-touchable-native-feedback Google Pixel emulator bpk-component-touchable-native-feedback Google Pixel emulator - dark mode

Installation

Check the main Readme for a complete installation guide.

Usage

import React, { Component } from 'react';
import { View, StyleSheet } from 'react-native';
import BpkText from 'backpack-react-native/bpk-component-text';
import { spacingBase } from '@skyscanner/bpk-foundations-react-native/tokens/base.react.native';
import BpkTouchableNativeFeedback from 'backpack-react-native/bpk-component-touchable-native-feedback';

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

export default class App extends Component {
  render() {
    return (
      <View style={styles.container}>
        <BpkTouchableNativeFeedback
          onPress={() => null}
          accessibilityLabel="Example touchable native feedback"
        >
          <BpkText>
            Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean
            commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus
            et magnis dis parturient montes, nascetur ridiculus mus.
          </BpkText>
        </BpkTouchableNativeFeedback>
      </View>
    );
  }
}

Props

Property PropType Required Default Value
children element true -
borderlessBackground bool false true
color string false null