abdurrahman95

Untitled

Jul 2nd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.56 KB | None | 0 0
  1.   Stack(
  2.                   fit: StackFit.expand,
  3.                   children: <Widget>[
  4.                     Positioned(
  5.                       child: Icon(
  6.                         Icons.touch_app,
  7.                         color: Colors.blueAccent,
  8.                       ),
  9.                       right: 110.0,
  10.                       bottom: 300.0,
  11.                     ),
  12.                     GestureDetector(
  13.                       child: Chart(occData),
  14.                       onTap: _setDetailedView,
  15.                     ),
  16.                   ],
  17.                 )
Advertisement
Add Comment
Please, Sign In to add comment