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.

23 lines
468B

  1. import 'package:farm_tpf/utils/const_assets.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: 180,
  13. child: Image.asset(AppAssets.logoWithSlogan),
  14. ),
  15. SizedBox(
  16. height: 80,
  17. ),
  18. ],
  19. );
  20. }
  21. }