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.

31 lines
641B

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