Lager - v5.2.0
    Preparing search index...

    Variable TabBarStyleConst

    TabBarStyle: {
        label: {
            color: string;
            fontFamily: string;
            fontSize: number;
            fontWeight:
                | undefined
                | "100"
                | "200"
                | "400"
                | "600"
                | 200
                | 100
                | "normal"
                | "bold"
                | "300"
                | "500"
                | "700"
                | "800"
                | "900"
                | 300
                | 400
                | 500
                | 600
                | 700
                | 800
                | 900
                | "ultralight"
                | "thin"
                | "light"
                | "medium"
                | "regular"
                | "semibold"
                | "condensedBold"
                | "condensed"
                | "heavy"
                | "black";
        };
    } = ...

    TabBarStyle - Style definitions for the tab bar.

    This object contains style definitions for the tab bar in the application. It includes styles for the tab bar label.

    Type declaration

    • label: {
          color: string;
          fontFamily: string;
          fontSize: number;
          fontWeight:
              | undefined
              | "100"
              | "200"
              | "400"
              | "600"
              | 200
              | 100
              | "normal"
              | "bold"
              | "300"
              | "500"
              | "700"
              | "800"
              | "900"
              | 300
              | 400
              | 500
              | 600
              | 700
              | 800
              | 900
              | "ultralight"
              | "thin"
              | "light"
              | "medium"
              | "regular"
              | "semibold"
              | "condensedBold"
              | "condensed"
              | "heavy"
              | "black";
      }