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

FPCDialog

Dialog component, decomposed by platform.
Example of using a component:

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