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
607B

  1. import 'package:farm_tpf/utils/const_assets.dart';
  2. import 'package:farm_tpf/utils/const_color.dart';
  3. import 'package:farm_tpf/utils/const_icons.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:flutter_svg/svg.dart';
  6. class WidgetTopWelcome extends StatelessWidget {
  7. @override
  8. Widget build(BuildContext context) {
  9. return Column(
  10. children: <Widget>[
  11. SizedBox(
  12. height: 80,
  13. ),
  14. SizedBox(
  15. width: 180,
  16. child: Image.asset(AppAssets.logoWithSlogan),
  17. ),
  18. SizedBox(
  19. height: 80,
  20. ),
  21. ],
  22. );
  23. }
  24. }