you can disable the animation entirely by setting the animation option to 'none'
import { useRouter } from 'expo-router';
const router = useRouter();
router.replace({
pathname: '/new-screen',
params: { someParam: 'value' },
animation: 'none', // Disables all animations
});