Guest User

Untitled

a guest
Jan 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Widget _compareColor() => Column(
  2. children: <Widget>[
  3. SizedBox(height: 30),
  4. RaisedButton(
  5. onPressed: () {
  6. print("click");
  7. },
  8. child: Text(
  9. "textTheme: accent\ntextColor: BLUE\ncolorBrightness:light",
  10. style: TextStyle(
  11. fontSize: 40,
  12. ),
  13. ),
  14. color: BLUE_LIGHT,
  15. textTheme: ButtonTextTheme.accent,
  16. textColor: Colors.white,
  17. colorBrightness: Brightness.light,
  18. )
  19. ],
  20. );
Add Comment
Please, Sign In to add comment