Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Widget _buildButton() {
  2. return Row(
  3. mainAxisAlignment: MainAxisAlignment.center,
  4. children: <Widget>[
  5. Padding(
  6. padding: const EdgeInsets.only(right: 8.0),
  7. child: RaisedButton.icon(
  8. icon: Icon(Icons.call),
  9. onPressed: addCall,
  10. label: Text("Add Call"),
  11. ),
  12. ),
  13. RaisedButton.icon(
  14. icon: Icon(Icons.call_made),
  15. onPressed: endCall,
  16. label: Text("End Random Call"),
  17. )
  18. ],
  19. );
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement