Preparing search index...

    Variable rowTextStyleConst

    rowTextStyle: {
        leftText: {
            textAlign: "left";
            flex: number;
            color: string;
            fontFamily: string;
            fontSize: number;
            fontWeight: "normal";
        };
        rightText: {
            textAlign: "right";
            flex: number;
            color: string;
            fontFamily: string;
            fontSize: number;
            fontWeight: "normal";
        };
    } = ...

    Text styling for row-based layouts Provides left and right aligned text in two-column layouts

    Type Declaration

    • leftText: {
          textAlign: "left";
          flex: number;
          color: string;
          fontFamily: string;
          fontSize: number;
          fontWeight: "normal";
      }
    • rightText: {
          textAlign: "right";
          flex: number;
          color: string;
          fontFamily: string;
          fontSize: number;
          fontWeight: "normal";
      }