Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Widget build(BuildContext context) {
  2. return Scaffold(
  3. appBar: AppBar(
  4. title: Text('Call Center'),
  5. ),
  6. body: StreamBuilder(
  7. stream: callCenter.changes,
  8. builder: (context, snapshot) {
  9. return Column(
  10. children: _buildBody() +
  11. [_buildButton()] +
  12. [_buildQueueView(callCenter.queueCalls)],
  13. );
  14. }),
  15. bottomNavigationBar: BottomAppBar(
  16. child: Container(
  17. height: 50.0,
  18. ),
  19. ),
  20. );
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement