Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. @override
  2. Widget build(BuildContext context) {
  3. return Scaffold(
  4. appBar: AppBar(
  5. title: Text('Welcome to WesterAf'),
  6. backgroundColor: Colors.lightBlueAccent,
  7. elevation: 0.0,
  8. iconTheme: new IconThemeData(color: Colors.lightBlueAccent),
  9. ),
  10. body: ExpansionTile(
  11. title: Text('Early Bird Registation'),
  12. // leading: Icon(Icons.local_pizza),
  13. trailing: Icon(Icons.expand_more),
  14. children: <Widget>[
  15. Column(
  16. children: <Widget>[
  17. new Row(
  18. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  19. children: [
  20. Text('general registation'),
  21. Text('yesllow'),
  22. Text('mitukula vekatesh'),
  23. new Radio(value: 0, groupValue: 23, onChanged: null),
  24. ],
  25. )
  26. ],
  27. ),
  28. Column(
  29. children: <Widget>[
  30. new Row(
  31. mainAxisAlignment: MainAxisAlignment.spaceEvenly,
  32. children: [
  33. Text('general registation'),
  34. Text('yesllow'),
  35. Text('venkey'),
  36. new Radio(value: 0, groupValue: 23, onChanged: null),
  37. ],
  38. )
  39. ],
  40. )
  41. ],
  42. ),
  43. );
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement