diff --git a/app/screens/onboarding/paginator.tsx b/app/screens/onboarding/paginator.tsx
index 5480f659c..29a233b1d 100644
--- a/app/screens/onboarding/paginator.tsx
+++ b/app/screens/onboarding/paginator.tsx
@@ -25,6 +25,15 @@ const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => ({
width: DOT_SIZE / 2,
opacity: 0.25,
},
+ fixedDot: {
+ height: DOT_SIZE / 2,
+ borderRadius: 5,
+ backgroundColor: theme.buttonBg,
+ marginHorizontal: DOT_SIZE / 2,
+ width: DOT_SIZE / 2,
+ opacity: 0.25,
+ position: 'absolute',
+ },
outerDot: {
height: DOT_SIZE,
borderRadius: DOT_SIZE / 2,
@@ -83,7 +92,7 @@ const Dot = ({item, index, scrollX, theme, moveToSlide}: DotProps) => {
const opacity = interpolate(
scrollX.value,
inputRange,
- [0.25, 1, 0.25],
+ [0, 1, 0],
);
return {opacity};
@@ -104,13 +113,17 @@ const Dot = ({item, index, scrollX, theme, moveToSlide}: DotProps) => {
onPress={() => moveToSlide(index)}
key={item.id}
>
+
);