Skip to content

Keyboard

Ivan Galkin edited this page Jan 1, 2024 · 1 revision

FPCKeyboardButton

Button component of keyboard.
Example of using a component:

FPCKeyboardButton(
  onPressed: () {},
  child: const Child(),
),
iOS (Cupertino) Android (Material)

FPCKeyboardNumberButton

Button component of keyboard, specially for only numbers.
Example of using a component:

FPCKeyboardNumberButton(
  number: 1,
  onPressed: () {},
),
iOS (Cupertino) Android (Material)

FPCKeyboard

Large widget that arranges keyboard buttons.
Example of using a component:

FPCKeyboard(
  onPressed: (int value) {},
),
iOS (Cupertino) Android (Material)
Clone this wiki locally