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

hard page flip for all pages

Open rafaelfaria opened this issue 4 years ago • 1 comments

How do I set a hard page flip to all the pages instead of only for the cover?

rafaelfaria avatar Feb 10 '21 12:02 rafaelfaria

I believe you can set data-density="hard" on the outermost div of the Page component. const Page = React.forwardRef((props, ref) => { return ( <div className="page page-cover" ref={ref} data-density="hard"> <div className="page-content"> </div> ); });

Azariagmt avatar Feb 11 '21 12:02 Azariagmt