Change rightOffset of Swipeable

How can i change the rightOffset of swipeable which is state of swipeable


Below is my code. What props shall i use to change to rightOffset value?

    <Swipeable renderRightActions={renderRightActions}>
      <TouchableHighlight
        style={styles.listContainer}
        underlayColor='#f8f8f8'
        onPress={() => {}}
      >
        <View>
          <View style={styles.timeDateContainer}>
            <AppText style={{ color: colors.theme, fontSize: 24 }}>
              {item.time}
            </AppText>
            <AppText style={{ color: colors.medium }}>{item.date}</AppText>
          </View>
          <AppText style={{ color: colors.inputText, fontWeight: "bold" }}>
            {item.message}
          </AppText>
        </View>
      </TouchableHighlight>
    </Swipeable>