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

FPCListRefresh

List refresh component to display the loading of asynchronous behavior, decomposed by platform.
Example of using a component:

FPCListRefresh(
  controller: controller,
  onRefresh: onRefresh,
  child: const Child(),
),
iOS (Cupertino) Android (Material)

FPCListSection

Card component, needed to display multiple rows of settings buttons, decomposed by platform.
Example of using a component:

FPCListSection(
  items: [
    FPCListSectionItem(
      title: "First Item",
      onPressed: () {},
    ),
    FPCListSectionItem(
      title: "Second Item",
      onPressed: () {},
    ),
  ],
),
iOS (Cupertino) Android (Material)
Clone this wiki locally