Massive/MassiveFab.tsx

28 lines
619 B
TypeScript
Raw Normal View History

import React, {useContext} from 'react';
2022-07-15 06:06:33 +00:00
import {FAB} from 'react-native-paper';
import {CustomTheme} from './App';
2022-09-25 04:32:49 +00:00
import {lightColors} from './colors';
2022-07-08 02:59:19 +00:00
export default function MassiveFab(
2022-07-15 06:06:33 +00:00
props: Partial<React.ComponentProps<typeof FAB>>,
2022-07-08 02:59:19 +00:00
) {
const {color} = useContext(CustomTheme);
2022-09-25 04:32:49 +00:00
const fabColor = lightColors.map(lightColor => lightColor.hex).includes(color)
? 'black'
: 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
{...props}
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: 60,
backgroundColor: color,
2022-07-15 06:06:33 +00:00
}}
2022-07-08 02:59:19 +00:00
/>
);
}