Skip to main content

paddingBottom()

Applies paddingBottom according to platform and version to any component that accepts the paddingBottom property in its style.

Usage

import React from 'react';
import { Text, View } from "react-native";

// React Native UI DevKit
import { paddingBottom } from 'react-native-ui-devkit';

const App = () => {
return (
<View style={[
paddingBottom(),
{
// your custom style here...
}]}>
<Text>Text</Text>
</View>
);
}

export default App;