Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.21 KB | None | 0 0
  1. _topbarItems() {
  2.     return ListView(
  3.       scrollDirection: Axis.horizontal,
  4.       children: <Widget>[
  5.         Column(mainAxisAlignment: MainAxisAlignment.center, children: <Widget>[
  6.           Padding(
  7.             padding: EdgeInsets.fromLTRB(40, 0, 0, 0),
  8.             child: Text(_timeNow == null ? "" : _timeNow,
  9.                 maxLines: 1,
  10.                 style: (TextStyle(
  11.                   fontFamily: "Montserrat Light",
  12.                   fontWeight: FontWeight.normal,
  13.                   color: Colors.white.withAlpha(127),
  14.                   fontSize: 12,
  15.                 ))),
  16.           ),
  17.         ]),
  18.        /*  Column(
  19.           mainAxisAlignment: MainAxisAlignment.center,
  20.           children: <Widget>[
  21.             Padding(
  22.               padding: EdgeInsets.fromLTRB(60, 0, 0, 0),
  23.               child: Text(_timeDelay == null ? "" : _timeDelay,
  24.                   maxLines: 1,
  25.                   style: (TextStyle(
  26.                     fontFamily: "Montserrat Light",
  27.                     fontWeight: FontWeight.normal,
  28.                     color: Colors.white.withAlpha(127),
  29.                     fontSize: 12,
  30.                   ))),
  31.             ),
  32.           ],
  33.         ), */
  34.       ],
  35.     );
  36.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement