Answers for "button with clipboard action flutter"

2

button copy to clipboard flutter

Container(
  width: double.maxFinite,
  child: RaisedButton.icon(
    color: Colors.blue,
    onPressed: () {
      var data = jsonEncode(command.dioError);
      Clipboard.setData(ClipboardData(text: data.toString()));
      snackBar();
    },
    label: Text('Copy error to clipboard', style: TextStyle(color: Colors.white)),
    icon: Icon(Icons.copy, color: Colors.white),
    textColor: Colors.white,
    splashColor: Colors.blueAccent,
   ),
),
Posted by: Guest on January-12-2021

Code answers related to "button with clipboard action flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language