# Single Button

If you only need a single button, checkout the ConvexButton.

button

Scaffold(
  bottomNavigationBar: ConvexButton.fab(
    onTap: () => debugPrint('click'),
  ),
);
1
2
3
4
5