Skip to content
Ivan Galkin edited this page Jan 1, 2024 · 1 revision

FPCText

Class that combines static methods with all text widgets for quick display.
Example of using a class:

FPCText.regular16Black(
  context: context,
  text: "Text",
),

FPCTextSpan

Ready-made shell widget for receiving text span items.
Example of using a class:

FPCTextSpan(
  children: [
    FPCTextSpanItem.regular16Black(
      context,
      text: "First Item",
    ),
    FPCTextSpanItem.regular16Black(
      context,
      text: "Second Item",
    ),
  ],
),

FPCTextStyle

Class that combines static methods with all text styles methods.
Example of using a class:

FPCTextStyle.regular16Black(
  context,
),
Clone this wiki locally