Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @override
  2. Widget build(BuildContext context) {
  3. return Scaffold(
  4. body: Center(
  5. child: Column(
  6. children: <Widget>[
  7. CircleAvatar(backgroundImage: AssetImage("assets/images/profile.jpg"), radius: 40),
  8. SizedBox(height: 12),
  9. Text("CopsOnRoad"),
  10. ],
  11. ),
  12. ),
  13. );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement