MRT logoMaterial React Table

    Full Screen Toggle Feature Guide

    Relevant Props

    #
    Prop Name
    Type
    Default Value
    More Info Links
    1
    boolean
    true

    No Description Provided... Yet...

    2

    No Description Provided... Yet...

    Relevant State

    #
    State Option
    Type
    Default Value
    More Info Links
    1
    boolean
    false

    No Description Provided... Yet...

    Disable Full Screen Toggle

    The full screen toggle button is enabled by default. You can hide it by setting the enableFullScreenToggle prop to false.

    return (
    <MaterialTable
    columns={columns
    data={data}
    enableFullScreenToggle={false}
    />
    );