lodev09/react-native-true-sheet

View on GitHub
example/src/components/Footer.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { Text, View, type ViewStyle } from 'react-native'

import { $WHITE_TEXT, DARK_GRAY, FOOTER_HEIGHT } from '../utils'

export const Footer = () => {
  return (
    <View style={$footer}>
      <Text style={$WHITE_TEXT}>FOOTER</Text>
    </View>
  )
}

const $footer: ViewStyle = {
  height: FOOTER_HEIGHT,
  backgroundColor: DARK_GRAY,
  alignItems: 'center',
  justifyContent: 'center',
}