You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
893 B
TypeScript
39 lines
893 B
TypeScript
import React from 'react'
|
|
import {Platform, Pressable} from 'react-native'
|
|
import {Switch as PaperSwitch, Text, useTheme} from 'react-native-paper'
|
|
import {MARGIN} from './constants'
|
|
|
|
function Switch({
|
|
value,
|
|
onChange,
|
|
title,
|
|
}: {
|
|
value?: boolean
|
|
onChange: (value: boolean) => void
|
|
title: string
|
|
}) {
|
|
const {colors} = useTheme()
|
|
|
|
return (
|
|
<Pressable
|
|
onPress={() => onChange(!value)}
|
|
style={{
|
|
flexDirection: 'row',
|
|
flexWrap: 'wrap',
|
|
alignItems: 'center',
|
|
marginBottom: Platform.OS === 'ios' ? MARGIN : null,
|
|
}}>
|
|
<PaperSwitch
|
|
color={colors.primary}
|
|
style={{marginRight: MARGIN}}
|
|
value={value}
|
|
onValueChange={onChange}
|
|
trackColor={{true: colors.primary + '80', false: colors.disabled}}
|
|
/>
|
|
<Text>{title}</Text>
|
|
</Pressable>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Switch)
|