- Flutter Widget Livebook

OutlineButton

Similar to a FlatButton with a thin grey rounded rectangle border.

Example

OutlineButton(
  onPressed: () {
    /*...*/
  },
  child: Text(
    "Outline Button",
  ),
)

Related Links

  1. Example
  2. Related Links