Massive/MassiveFab.tsx

26 lines
584 B
TypeScript
Raw Normal View History

2022-10-31 04:22:08 +00:00
import {ComponentProps} from 'react'
import {FAB} from 'react-native-paper'
import {useColor} from './color'
import {lightColors} from './colors'
2022-07-08 02:59:19 +00:00
export default function MassiveFab(props: Partial<ComponentProps<typeof FAB>>) {
2022-10-31 04:22:08 +00:00
const {color} = useColor()
2022-09-25 04:32:49 +00:00
const fabColor = lightColors.map(lightColor => lightColor.hex).includes(color)
? 'black'
2022-10-31 04:22:08 +00:00
: undefined
2022-07-15 06:06:33 +00:00
2022-07-08 02:59:19 +00:00
return (
2022-07-15 06:06:33 +00:00
<FAB
2022-07-08 02:59:19 +00:00
icon="add"
2022-09-25 04:32:49 +00:00
color={fabColor}
2022-07-15 06:06:33 +00:00
style={{
position: 'absolute',
right: 10,
bottom: 10,
backgroundColor: color,
2022-07-15 06:06:33 +00:00
}}
2022-09-26 01:38:25 +00:00
{...props}
2022-07-08 02:59:19 +00:00
/>
2022-10-31 04:22:08 +00:00
)
2022-07-08 02:59:19 +00:00
}