Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Last active March 5, 2021 16:33
Show Gist options
  • Save nolimits4web/4f2418c5a1b0f4b16c494b607b438d5b to your computer and use it in GitHub Desktop.
Save nolimits4web/4f2418c5a1b0f4b16c494b607b438d5b to your computer and use it in GitHub Desktop.
page with theme detection
import { Page, Navbar, Block, theme } from "framework7-react";
export default function Home() {
return (
<Page>
<Navbar title="Framework7 Next.js" />
<Block>
{theme.ios && <p>Hello to iOS user!</p>}
{theme.md && <p>Hello to Android user!</p>}
</Block>
</Page>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment