- Flutter Widget Livebook

FloatingActionButton

A material design floating action button.

Example

FloatingActionButton(
  onPressed: () {
    // Add your onPressed code here!
  },
  child: Icon(Icons.thumb_up),
  backgroundColor: Colors.pink,
)

Related Links

  1. Example
  2. Related Links