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.

26 lines
511B

  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: 80,
  10. ),
  11. SizedBox(
  12. width: 172,
  13. child: FlutterLogo(
  14. size: 140,
  15. colors: Colors.green,
  16. ),
  17. ),
  18. SizedBox(
  19. height: 80,
  20. ),
  21. ],
  22. );
  23. }
  24. }