You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
557B

  1. import 'package:flutter/material.dart';
  2. class WidgetTopWelcome extends StatelessWidget {
  3. @override
  4. Widget build(BuildContext context) {
  5. return Column(
  6. children: <Widget>[
  7. SizedBox(
  8. height: 41,
  9. ),
  10. SizedBox(
  11. width: 172,
  12. child: FlutterLogo(
  13. size: 170,
  14. ),
  15. ),
  16. SizedBox(
  17. height: 40,
  18. ),
  19. Text("Ứng dụng"),
  20. Text("Mô tả chi tiết ứng dụng"),
  21. SizedBox(
  22. height: 30,
  23. )
  24. ],
  25. );
  26. }
  27. }