back interdiff of round #1 and #0

possible slider android crash fix #12

merged
opened by whey.party targeting main

sorry react native reanimated is scary stuff

files
src
components
forms
screens
ERROR
src/components/forms/Slider.tsx

Failed to calculate interdiff for this file.

NEW
src/screens/Settings/AppearanceSettings.tsx
··· 184 <Trans>Hue shift the colors:</Trans> 185 </Text> 186 <Slider 187 - label="Volume" 188 value={hue} 189 onValueChange={setHue} 190 - min={0} 191 - max={360} 192 step={1} 193 - debounce={0.3} 194 /> 195 </View> 196 </SettingsList.Group>
··· 184 <Trans>Hue shift the colors:</Trans> 185 </Text> 186 <Slider 187 value={hue} 188 onValueChange={setHue} 189 + minimumValue={0} 190 + maximumValue={360} 191 step={1} 192 /> 193 </View> 194 </SettingsList.Group>