react-pageflip
react-pageflip copied to clipboard
Anyways to make two pages view on mobile?
Hi, I want to know if there is any possibility of adding two pages view on mobile view?
Hi did you find any? @gokul1630
Hi @sc0rp10n-py, I used the below config for achieving two pages on mobile
const isMobile = window.innerWidth <= 1024;
new PageFlip(demobook, {
minWidth: 315,
maxWidth: 1024,
minHeight: 420,
maxHeight: 500,
usePortrait: !isMobile,
width: isMobile ? window.innerWidth / 2 : 550,
height: isMobile ? window.innerWidth / 1.5 : 733,
});