react-pageflip icon indicating copy to clipboard operation
react-pageflip copied to clipboard

Anyways to make two pages view on mobile?

Open gokul1630 opened this issue 1 year ago • 2 comments

Hi, I want to know if there is any possibility of adding two pages view on mobile view?

gokul1630 avatar Dec 21 '24 12:12 gokul1630

Hi did you find any? @gokul1630

sc0rp10n-py avatar Jan 25 '25 20:01 sc0rp10n-py

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,
                });

gokul1630 avatar Jan 30 '25 04:01 gokul1630