Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Container(
  2. width: MediaQuery.of(context).size.width * 3.5/4,
  3. height: MediaQuery.of(context).size.height * 0.35/4,
  4. child: RaisedButton(
  5. color: Colors.indigoAccent,
  6. textColor: cc.WHITE,
  7. shape: RoundedRectangleBorder(
  8. borderRadius: BorderRadius.circular(10.0),
  9. ),
  10. onPressed: () {
  11. push(context, Invite());
  12. },
  13. child: new Text(
  14. 'GENERATE CODE',
  15. style: new TextStyle(
  16. fontSize: 14.0,
  17. fontWeight: FontWeight.w700,
  18. color: Colors.white,
  19. ),
  20. ),
  21. //text: 'GENERATE CODE',
  22. ),
  23. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement