Framework7-React Iframe
The page does not scroll down because of the iframe.
by myFree_1
HTML
<script src="https://unpkg.com/[email protected]/umd/react.production.min.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/[email protected]/js/framework7.bundle.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/framework7.bundle.min.css">
<script src="https://unpkg.com/[email protected]/framework7-react.bundle.js"></script>
<div id="app"></div>
React
Framework7.use(Framework7React);
function AppComponent({ f7router }) {
return (
<App>
<Page noToolbar noNavbar noSwipeback loginScreen>
<LoginScreenTitle>Framework7</LoginScreenTitle>
<List form>
<ListInput
label="Username"
type="text"
placeholder="Your username"
/>
<ListInput
label="Password"
type="password"
placeholder="Your password"
/>
</List>
<List>
<ListButton>Sign In</ListButton>
<BlockFooter>
Some text about login information.
<br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</BlockFooter>
</List>
</Page>
</App>
)
}
ReactDOM.render(AppComponent, document.getElementById('app'));