App Provider
The app provider component provides the necessary context to easily set up a Toolpad application.
By wrapping an application at the root level with an AppProvider
component, many of Toolpad's features (such as routing, navigation and theming) can be automatically enabled to their fullest extent, abstracting away complexity and helping you focus on the details that matter.
Basic
Wrap an application page with the AppProvider
component.
Ideally, the AppProvider
should wrap every page in the application, therefore in most projects it should be imported and placed in the file that defines a shared layout for all pages.
In the following example, an AppProvider
component wrapping the page provides it with a default theme, and a DashboardLayout
placed inside it gets its navigation and routing features automatically set based on the props passed to the AppProvider
.
Next.js
The AppProvider
for Next.js applications includes some Next.js integrations out-of-the-box.
By using the specific AppProvider
for Next.js you do not have to manually configure the integration between some Toolpad features and the corresponding Next.js features (such as routing), making the integration automatic and seamless.
import { AppProvider } from '@toolpad/core/nextjs';
Next.js App Router
When using the Next.js App Router, the most typical file where to import and use AppProvider
will be at the top level layout.tsx
file that defines the layout for all the application pages.
// app/layout.tsx
import { AppProvider } from '@toolpad/core/nextjs';
export default function Layout(props) {
const { children } = props;
return (
<html lang="en">
<body>
<AppProvider>{children}</AppProvider>
</body>
</html>
);
}
Next.js Pages Router
When using the Next.js Pages Router, the most typical file where to import and use AppProvider
in order to wrap every page in the application will be the pages/_app.tsx
file.
// pages/_app.tsx
import { AppProvider } from '@toolpad/core/nextjs';
export default function App(props) {
const { Component, pageProps } = props;
return (
<AppProvider>
<Component {...pageProps} />
</AppProvider>
);
}
Client-side Routing
The AppProvider
for React Router includes routing out-of-the-box for projects using react-router-dom.
This specific AppProvider
is recommended when building single-page applications with tools such as Vite, as you do not have to manually configure your app routing, making the integration automatic and seamless.
import { AppProvider } from '@toolpad/core/react-router-dom';
Theming
An AppProvider
can set a visual theme for all elements inside it to adopt via the theme
prop. This prop can be set in a few distinct ways with different advantages and disadvantages:
- CSS variables theme: the default and recommended theming option for Toolpad applications, as it is the only option that prevents issues such as dark-mode SSR flickering and supports both light and dark mode with a single theme definition. The provided default theme in Toolpad is already in this format. CSS variables themes are only supported when you use
@toolpad/core
with version 5.x of@mui/material
. - Standard Material UI theme: a single standard Material UI theme can be provided as the only theme to be used.
- Light and dark themes: two separate Material UI themes can be provided for light and dark mode in an object with the format
{ light: Theme, dark: Theme }
API
See the documentation below for a complete reference to all of the props and classes available to the components mentioned here.